Class: YARD::CodeObjects::Cucumber::Scenario

Inherits:
NamespaceObject
  • Object
show all
Defined in:
lib/yard/code_objects/cucumber/scenario.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from LocationHelper

#file, #line_number, #location

Constructor Details

#initialize(namespace, name) ⇒ Scenario

Returns a new instance of Scenario.



7
8
9
10
11
12
# File 'lib/yard/code_objects/cucumber/scenario.rb', line 7

def initialize(namespace, name)
  super(namespace, name.to_s.strip)
  @comments = @description = @keyword = @value = @feature = nil
  @steps = []
  @tags = []
end

Instance Attribute Details

#commentsObject

Returns the value of attribute comments.



5
6
7
# File 'lib/yard/code_objects/cucumber/scenario.rb', line 5

def comments
  @comments
end

#descriptionObject

Returns the value of attribute description.



5
6
7
# File 'lib/yard/code_objects/cucumber/scenario.rb', line 5

def description
  @description
end

#featureObject

Returns the value of attribute feature.



5
6
7
# File 'lib/yard/code_objects/cucumber/scenario.rb', line 5

def feature
  @feature
end

#keywordObject

Returns the value of attribute keyword.



5
6
7
# File 'lib/yard/code_objects/cucumber/scenario.rb', line 5

def keyword
  @keyword
end

#stepsObject

Returns the value of attribute steps.



5
6
7
# File 'lib/yard/code_objects/cucumber/scenario.rb', line 5

def steps
  @steps
end

#tagsObject

Returns the value of attribute tags.



5
6
7
# File 'lib/yard/code_objects/cucumber/scenario.rb', line 5

def tags
  @tags
end

#valueObject

Returns the value of attribute value.



5
6
7
# File 'lib/yard/code_objects/cucumber/scenario.rb', line 5

def value
  @value
end

Instance Method Details

#background?Boolean

Returns:

  • (Boolean)


14
15
16
# File 'lib/yard/code_objects/cucumber/scenario.rb', line 14

def background?
  @keyword == "Background"
end

#outline?Boolean

Returns:

  • (Boolean)


18
19
20
# File 'lib/yard/code_objects/cucumber/scenario.rb', line 18

def outline?
  false
end