Class: YARD::CodeObjects::Lucid::ScenarioOutline

Inherits:
NamespaceObject
  • Object
show all
Defined in:
lib/yard/code_objects/lucid/scenario_outline.rb

Defined Under Namespace

Classes: Examples

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from LocationHelper

#file, #line_number, #location

Constructor Details

#initialize(namespace, name) ⇒ ScenarioOutline

Returns a new instance of ScenarioOutline.



6
7
8
9
10
11
12
13
# File 'lib/yard/code_objects/lucid/scenario_outline.rb', line 6

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

Instance Attribute Details

#commentsObject

Returns the value of attribute comments.



3
4
5
# File 'lib/yard/code_objects/lucid/scenario_outline.rb', line 3

def comments
  @comments
end

#descriptionObject

Returns the value of attribute description.



3
4
5
# File 'lib/yard/code_objects/lucid/scenario_outline.rb', line 3

def description
  @description
end

#examplesObject

Returns the value of attribute examples.



4
5
6
# File 'lib/yard/code_objects/lucid/scenario_outline.rb', line 4

def examples
  @examples
end

#featureObject

Returns the value of attribute feature.



3
4
5
# File 'lib/yard/code_objects/lucid/scenario_outline.rb', line 3

def feature
  @feature
end

#keywordObject

Returns the value of attribute keyword.



3
4
5
# File 'lib/yard/code_objects/lucid/scenario_outline.rb', line 3

def keyword
  @keyword
end

#scenariosObject

Returns the value of attribute scenarios.



4
5
6
# File 'lib/yard/code_objects/lucid/scenario_outline.rb', line 4

def scenarios
  @scenarios
end

#stepsObject

Returns the value of attribute steps.



3
4
5
# File 'lib/yard/code_objects/lucid/scenario_outline.rb', line 3

def steps
  @steps
end

#tagsObject

Returns the value of attribute tags.



3
4
5
# File 'lib/yard/code_objects/lucid/scenario_outline.rb', line 3

def tags
  @tags
end

#valueObject

Returns the value of attribute value.



3
4
5
# File 'lib/yard/code_objects/lucid/scenario_outline.rb', line 3

def value
  @value
end

Instance Method Details

#background?Boolean

Returns:

  • (Boolean)


15
16
17
# File 'lib/yard/code_objects/lucid/scenario_outline.rb', line 15

def background?
  false
end

#examples?Boolean

Returns:

  • (Boolean)


23
24
25
# File 'lib/yard/code_objects/lucid/scenario_outline.rb', line 23

def examples?
  @examples.find { |example| example.rows }
end

#outline?Boolean

Returns:

  • (Boolean)


19
20
21
# File 'lib/yard/code_objects/lucid/scenario_outline.rb', line 19

def outline?
  true
end