Class: Cucumber::Core::Test::Case::NameBuilder

Inherits:
Object
  • Object
show all
Defined in:
lib/cucumber/core/test/case.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(test_case) ⇒ NameBuilder

Returns a new instance of NameBuilder.



100
101
102
# File 'lib/cucumber/core/test/case.rb', line 100

def initialize(test_case)
  test_case.describe_source_to self
end

Instance Attribute Details

#keywordObject (readonly)

Returns the value of attribute keyword.



98
99
100
# File 'lib/cucumber/core/test/case.rb', line 98

def keyword
  @keyword
end

#resultObject (readonly)

Returns the value of attribute result.



97
98
99
# File 'lib/cucumber/core/test/case.rb', line 97

def result
  @result
end

Instance Method Details

#examples_table(table) ⇒ Object



120
121
122
123
124
125
# File 'lib/cucumber/core/test/case.rb', line 120

def examples_table(table)
  name = table.name.strip
  name = table.keyword if name.length == 0
  @result = ", #{name}" + @result
  self
end

#examples_table_row(row) ⇒ Object



127
128
129
130
# File 'lib/cucumber/core/test/case.rb', line 127

def examples_table_row(row)
  @result = " (##{row.number})"
  self
end

#featureObject



104
105
106
# File 'lib/cucumber/core/test/case.rb', line 104

def feature(*)
  self
end

#scenario(scenario) ⇒ Object



108
109
110
111
112
# File 'lib/cucumber/core/test/case.rb', line 108

def scenario(scenario)
  @result = scenario.name
  @keyword = scenario.keyword
  self
end

#scenario_outline(outline) ⇒ Object



114
115
116
117
118
# File 'lib/cucumber/core/test/case.rb', line 114

def scenario_outline(outline)
  @result = outline.name + @result
  @keyword = outline.keyword
  self
end