aslakhellesoy-cucumber 0.1.99.8 → 0.1.99.9
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +1 -0
- data/Manifest.txt +1 -0
- data/lib/cucumber/ast/scenario.rb +1 -1
- data/lib/cucumber/ast/step.rb +1 -1
- data/lib/cucumber/version.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
@@ -57,6 +57,7 @@ Scenario Outlines, the rich command line, the nice output format and everything
|
|
57
57
|
pure Ruby users have been enjoying for a while.
|
58
58
|
|
59
59
|
== Bugfixes
|
60
|
+
* Can't use an empty string as a table value in a scenario outline (#172 Aslak Hellesøy)
|
60
61
|
* Really skip skipped steps (#90 Aslak Hellesøy)
|
61
62
|
* No output for multi-line strings (#71 Aslak Hellesøy)
|
62
63
|
* Fix cucumber/formatters/unicode flaws on Windows (#145 Michael)
|
data/Manifest.txt
CHANGED
@@ -127,6 +127,7 @@ examples/test_unit/features/step_definitions/test_unit_steps.rb
|
|
127
127
|
examples/test_unit/features/test_unit.feature
|
128
128
|
examples/tickets/Rakefile
|
129
129
|
examples/tickets/cucumber.yml
|
130
|
+
examples/tickets/features/77.feature
|
130
131
|
examples/tickets/features/lib/eatting_machine.rb
|
131
132
|
examples/tickets/features/lib/pantry.rb
|
132
133
|
examples/tickets/features/scenario_outline.feature
|
data/lib/cucumber/ast/step.rb
CHANGED
@@ -118,7 +118,7 @@ module Cucumber
|
|
118
118
|
def replace_name_arguments(argument_hash)
|
119
119
|
name_with_arguments_replaced = @name
|
120
120
|
argument_hash.each do |name, value|
|
121
|
-
name_with_arguments_replaced = name_with_arguments_replaced.gsub(name, value)
|
121
|
+
name_with_arguments_replaced = name_with_arguments_replaced.gsub(name, value) if value
|
122
122
|
end
|
123
123
|
name_with_arguments_replaced
|
124
124
|
end
|
data/lib/cucumber/version.rb
CHANGED