cucumber 0.1.16 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +111 -5
- data/License.txt +1 -1
- data/Manifest.txt +141 -83
- data/Rakefile +1 -1
- data/bin/cucumber +2 -2
- data/config/hoe.rb +8 -2
- data/examples/cs/features/addition.feature +4 -5
- data/examples/cs/features/step_definitons/calculator_steps.rb +1 -5
- data/examples/i18n/README.textile +1 -1
- data/examples/i18n/Rakefile +5 -5
- data/examples/i18n/ar/features/addition.feature +10 -11
- data/examples/i18n/ar/features/step_definitons/calculator_steps.rb +1 -10
- data/examples/i18n/da/features/step_definitons/kalkulator_steps.rb +1 -1
- data/examples/i18n/de/features/addition.feature +10 -11
- data/examples/i18n/de/features/division.feature +0 -1
- data/examples/i18n/de/features/step_definitons/calculator_steps.rb +2 -10
- data/examples/i18n/en-lol/Rakefile +6 -0
- data/examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb +16 -0
- data/examples/i18n/en-lol/features/stuffing.feature +8 -0
- data/examples/i18n/en-lol/features/support/env.rb +8 -0
- data/examples/i18n/en-lol/lib/basket.rb +12 -0
- data/examples/i18n/en-lol/lib/belly.rb +11 -0
- data/examples/i18n/en/features/addition.feature +10 -11
- data/examples/i18n/en/features/division.feature +0 -1
- data/examples/i18n/en/features/step_definitons/calculator_steps.rb +2 -6
- data/examples/i18n/es/features/adicion.feature +11 -12
- data/examples/i18n/es/features/step_definitons/calculador_steps.rb +7 -10
- data/examples/i18n/es/lib/calculador.rb +4 -1
- data/examples/i18n/et/features/jagamine.feature +9 -0
- data/examples/i18n/et/features/liitmine.feature +10 -11
- data/examples/i18n/et/features/step_definitions/kalkulaator_steps.rb +4 -8
- data/examples/i18n/et/lib/kalkulaator.rb +5 -1
- data/examples/i18n/fi/Rakefile +6 -0
- data/examples/i18n/fi/features/jakolasku.feature +9 -0
- data/examples/i18n/fi/features/step_definitons/laskin_steps.rb +24 -0
- data/examples/i18n/fi/features/yhteenlasku.feature +16 -0
- data/examples/i18n/fi/lib/laskin.rb +14 -0
- data/examples/i18n/fr/features/addition.feature +14 -12
- data/examples/i18n/fr/features/step_definitions/calculatrice_steps.rb +11 -13
- data/examples/i18n/fr/lib/calculatrice.rb +1 -1
- data/examples/i18n/id/features/addition.feature +10 -11
- data/examples/i18n/id/features/division.feature +0 -1
- data/examples/i18n/id/features/step_definitons/calculator_steps.rb +2 -11
- data/examples/i18n/it/features/step_definitons/calcolatrice_steps.rb +1 -1
- data/examples/i18n/ja/features/addition.feature +10 -11
- data/examples/i18n/ja/features/division.feature +2 -3
- data/examples/i18n/ja/features/step_definitons/calculator_steps.rb +4 -13
- data/examples/i18n/ko/features/addition.feature +7 -8
- data/examples/i18n/ko/features/division.feature +3 -4
- data/examples/i18n/ko/features/step_definitons/calculator_steps.rb +1 -5
- data/examples/i18n/lt/features/addition.feature +11 -11
- data/examples/i18n/lt/features/division.feature +0 -1
- data/examples/i18n/lt/features/step_definitons/calculator_steps.rb +2 -11
- data/examples/i18n/no/features/step_definitons/kalkulator_steps.rb +3 -10
- data/examples/i18n/no/features/summering.feature +1 -0
- data/examples/i18n/no/features/support/env.rb +6 -0
- data/examples/i18n/pt/features/step_definitions/calculadora_steps.rb +1 -1
- data/examples/i18n/ro/features/step_definitons/calculator_steps.rb +1 -1
- data/examples/i18n/ru/Rakefile +6 -0
- data/examples/i18n/ru/features/addition.feature +10 -0
- data/examples/i18n/ru/features/consecutive_calculations.feature +16 -0
- data/examples/i18n/ru/features/division.feature +15 -0
- data/examples/i18n/ru/features/step_definitons/calculator_steps.rb +19 -0
- data/examples/i18n/ru/features/support/env.rb +6 -0
- data/examples/i18n/ru/features/support/world.rb +7 -0
- data/examples/i18n/ru/lib/calculator.rb +24 -0
- data/examples/i18n/se/features/step_definitons/kalkulator_steps.rb +1 -1
- data/examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb +2 -2
- data/examples/i18n/zh-TW/Rakefile +6 -0
- data/examples/i18n/zh-TW/features/addition.feature +16 -0
- data/examples/i18n/zh-TW/features/division.feature +10 -0
- data/examples/i18n/zh-TW/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/zh-TW/lib/calculator.rb +14 -0
- data/examples/java/src/cucumber/demo/Hello.java +16 -0
- data/examples/jbehave/README.textile +20 -0
- data/examples/jbehave/features/support/env.rb +7 -0
- data/examples/jbehave/features/trading.feature +28 -0
- data/examples/jbehave/pom.xml +53 -0
- data/examples/jbehave/src/main/java/cukes/jbehave/examples/trader/converters/TraderConverter.java +32 -0
- data/examples/jbehave/src/main/java/cukes/jbehave/examples/trader/model/Stock.java +42 -0
- data/examples/jbehave/src/main/java/cukes/jbehave/examples/trader/model/Trader.java +29 -0
- data/examples/jbehave/src/main/java/cukes/jbehave/examples/trader/persistence/TraderPersister.java +22 -0
- data/examples/jbehave/src/main/java/cukes/jbehave/examples/trader/scenarios/TraderSteps.java +70 -0
- data/examples/selenium/features/step_definitons/search_steps.rb +13 -0
- data/examples/selenium/features/support/env.rb +19 -0
- data/examples/{calculator_ruby_features → selenium_webrat}/Rakefile +0 -0
- data/examples/selenium_webrat/features/search.feature +9 -0
- data/examples/selenium_webrat/features/step_definitons/search_steps.rb +13 -0
- data/examples/selenium_webrat/features/support/env.rb +41 -0
- data/examples/self_test/README.textile +4 -1
- data/examples/self_test/Rakefile +6 -0
- data/examples/self_test/features/background/failing_background.feature +11 -0
- data/examples/self_test/features/background/failing_background_after_success.feature +11 -0
- data/examples/self_test/features/background/multiline_args_background.feature +32 -0
- data/examples/self_test/features/background/passing_background.feature +10 -0
- data/examples/self_test/features/background/pending_background.feature +10 -0
- data/examples/self_test/features/background/scenario_outline_failing_background.feature +16 -0
- data/examples/self_test/features/background/scenario_outline_passing_background.feature +16 -0
- data/examples/self_test/features/call_undefined_step_from_step_def.feature +7 -0
- data/examples/self_test/features/failing_expectation.feature +4 -0
- data/examples/self_test/features/lots_of_undefined.feature +8 -0
- data/examples/self_test/features/outline_sample.feature +11 -5
- data/examples/self_test/features/sample.feature +8 -3
- data/examples/self_test/features/step_definitions/sample_steps.rb +55 -4
- data/examples/self_test/features/support/env.rb +1 -0
- data/examples/self_test/features/support/tag_count_formatter.rb +25 -0
- data/examples/sinatra/Rakefile +6 -0
- data/examples/sinatra/app.rb +14 -0
- data/examples/sinatra/features/add.feature +11 -0
- data/examples/sinatra/features/step_definitions/add_steps.rb +15 -0
- data/examples/sinatra/features/support/env.rb +20 -0
- data/examples/sinatra/views/add.erb +5 -0
- data/examples/sinatra/views/layout.erb +8 -0
- data/examples/tickets/Rakefile +13 -8
- data/examples/tickets/cucumber.yml +2 -1
- data/examples/tickets/features/172.feature +28 -0
- data/examples/tickets/features/177/1.feature +29 -0
- data/examples/tickets/features/177/2.feature +21 -0
- data/examples/tickets/features/177/3.feature +18 -0
- data/examples/tickets/features/180.feature +7 -0
- data/examples/tickets/features/236.feature +13 -0
- data/examples/tickets/features/241.feature +13 -0
- data/examples/tickets/features/scenario_outline.feature +6 -1
- data/examples/tickets/features/step_definitons/tickets_steps.rb +41 -4
- data/examples/tickets/features/tickets.feature +5 -1
- data/features/background.feature +221 -0
- data/features/cucumber_cli.feature +263 -97
- data/features/cucumber_cli_diff_disabled.feature +45 -0
- data/features/cucumber_cli_outlines.feature +50 -42
- data/features/custom_formatter.feature +11 -0
- data/features/report_called_undefined_steps.feature +34 -0
- data/features/step_definitions/cucumber_steps.rb +6 -3
- data/features/step_definitions/extra_steps.rb +1 -1
- data/features/support/env.rb +3 -2
- data/gem_tasks/features.rake +1 -1
- data/gem_tasks/flog.rake +1 -1
- data/gem_tasks/gemspec.rake +2 -2
- data/gem_tasks/jar.rake +67 -0
- data/gem_tasks/rspec.rake +2 -0
- data/lib/autotest/cucumber_mixin.rb +18 -23
- data/lib/cucumber.rb +55 -11
- data/lib/cucumber/ast.rb +29 -0
- data/lib/cucumber/ast/background.rb +50 -0
- data/lib/cucumber/ast/comment.rb +26 -0
- data/lib/cucumber/ast/examples.rb +38 -0
- data/lib/cucumber/ast/feature.rb +62 -0
- data/lib/cucumber/ast/feature_element.rb +46 -0
- data/lib/cucumber/ast/features.rb +20 -0
- data/lib/cucumber/ast/outline_table.rb +81 -0
- data/lib/cucumber/ast/py_string.rb +58 -0
- data/lib/cucumber/ast/scenario.rb +64 -0
- data/lib/cucumber/ast/scenario_outline.rb +90 -0
- data/lib/cucumber/ast/step.rb +122 -0
- data/lib/cucumber/ast/step_collection.rb +66 -0
- data/lib/cucumber/ast/step_invocation.rb +110 -0
- data/lib/cucumber/ast/table.rb +318 -0
- data/lib/cucumber/ast/tags.rb +33 -0
- data/lib/cucumber/ast/visitor.rb +125 -0
- data/lib/cucumber/broadcaster.rb +2 -9
- data/lib/cucumber/cli/configuration.rb +364 -0
- data/lib/cucumber/cli/language_help_formatter.rb +59 -0
- data/lib/cucumber/cli/main.rb +109 -0
- data/lib/cucumber/core_ext/exception.rb +41 -8
- data/lib/cucumber/core_ext/instance_exec.rb +54 -0
- data/lib/cucumber/core_ext/proc.rb +29 -65
- data/lib/cucumber/core_ext/string.rb +19 -0
- data/lib/cucumber/formatter.rb +1 -0
- data/lib/cucumber/{formatters → formatter}/ansicolor.rb +13 -16
- data/lib/cucumber/formatter/color_io.rb +23 -0
- data/lib/cucumber/formatter/console.rb +109 -0
- data/lib/cucumber/formatter/cucumber.css +55 -0
- data/lib/cucumber/formatter/cucumber.sass +49 -0
- data/lib/cucumber/formatter/html.rb +133 -0
- data/lib/cucumber/formatter/pretty.rb +179 -0
- data/lib/cucumber/formatter/profile.rb +77 -0
- data/lib/cucumber/formatter/progress.rb +60 -0
- data/lib/cucumber/formatter/rerun.rb +35 -0
- data/lib/cucumber/formatter/unicode.rb +35 -0
- data/lib/cucumber/formatters/unicode.rb +2 -35
- data/lib/cucumber/jbehave.rb +97 -0
- data/lib/cucumber/languages.yml +196 -80
- data/lib/cucumber/parser.rb +43 -0
- data/lib/cucumber/parser/basic.rb +0 -0
- data/lib/cucumber/parser/feature.rb +1487 -0
- data/lib/cucumber/parser/feature.tt +193 -0
- data/lib/cucumber/parser/i18n.tt +31 -0
- data/lib/cucumber/parser/table.rb +402 -0
- data/lib/cucumber/parser/table.tt +59 -0
- data/lib/cucumber/parser/treetop_ext.rb +75 -0
- data/lib/cucumber/platform.rb +2 -17
- data/lib/cucumber/rails/rspec.rb +5 -9
- data/lib/cucumber/rails/world.rb +2 -2
- data/lib/cucumber/rake/task.rb +39 -7
- data/lib/cucumber/step_definition.rb +103 -0
- data/lib/cucumber/step_match.rb +49 -0
- data/lib/cucumber/step_mother.rb +183 -67
- data/lib/cucumber/version.rb +2 -2
- data/lib/cucumber/world.rb +53 -1
- data/rails_generators/cucumber/cucumber_generator.rb +22 -3
- data/rails_generators/cucumber/templates/cucumber +2 -1
- data/rails_generators/cucumber/templates/cucumber.rake +13 -5
- data/rails_generators/cucumber/templates/env.rb +4 -3
- data/rails_generators/cucumber/templates/paths.rb +18 -11
- data/rails_generators/cucumber/templates/webrat_steps.rb +41 -25
- data/rails_generators/feature/feature_generator.rb +4 -0
- data/rails_generators/feature/templates/steps.erb +0 -4
- data/spec/cucumber/ast/background_spec.rb +49 -0
- data/spec/cucumber/ast/feature_factory.rb +63 -0
- data/spec/cucumber/ast/feature_spec.rb +37 -0
- data/spec/cucumber/ast/py_string_spec.rb +47 -0
- data/spec/cucumber/ast/scenario_outline_spec.rb +67 -0
- data/spec/cucumber/ast/scenario_spec.rb +65 -0
- data/spec/cucumber/ast/step_collection_spec.rb +8 -0
- data/spec/cucumber/ast/step_spec.rb +66 -0
- data/spec/cucumber/ast/table_spec.rb +149 -0
- data/spec/cucumber/ast/tags_spec.rb +19 -0
- data/spec/cucumber/broadcaster_spec.rb +6 -18
- data/spec/cucumber/cli/configuration_spec.rb +275 -0
- data/spec/cucumber/cli/main_spec.rb +203 -0
- data/spec/cucumber/core_ext/proc_spec.rb +27 -35
- data/spec/cucumber/core_ext/string_spec.rb +8 -0
- data/spec/cucumber/{formatters → formatter}/ansicolor_spec.rb +2 -2
- data/spec/cucumber/formatter/color_io_spec.rb +26 -0
- data/spec/cucumber/formatter/html/cucumber.css +37 -0
- data/spec/cucumber/formatter/html/cucumber.js +13 -0
- data/spec/cucumber/formatter/html/index.html +45 -0
- data/spec/cucumber/formatter/html/jquery-1.3.min.js +19 -0
- data/spec/cucumber/formatter/html/jquery.uitableedit.js +100 -0
- data/spec/cucumber/formatters/profile_formatter_spec.rb +17 -16
- data/spec/cucumber/parser/feature_parser_spec.rb +282 -0
- data/spec/cucumber/parser/table_parser_spec.rb +48 -0
- data/spec/cucumber/step_definition_spec.rb +81 -0
- data/spec/cucumber/step_mother_spec.rb +50 -51
- data/spec/cucumber/treetop_parser/empty_feature.feature +1 -1
- data/spec/cucumber/treetop_parser/multiple_tables.feature +6 -8
- data/spec/cucumber/treetop_parser/scenario_outline.feature +1 -1
- data/spec/cucumber/treetop_parser/spaces.feature +3 -1
- data/spec/cucumber/treetop_parser/with_comments.feature +1 -1
- data/spec/cucumber/treetop_parser/with_tags.feature +18 -0
- data/spec/cucumber/world/pending_spec.rb +13 -12
- data/spec/spec_helper.rb +1 -1
- metadata +165 -88
- data/examples/calculator_ruby_features/features/addition.rb +0 -39
- data/examples/calculator_ruby_features/features/step_definitons/calculator_steps.rb +0 -43
- data/examples/i18n/ja/README.txt +0 -5
- data/examples/selenium/features/step_definitons/stories_steps.rb +0 -40
- data/gem_tasks/treetop.rake +0 -41
- data/lib/cucumber/cli.rb +0 -356
- data/lib/cucumber/executor.rb +0 -205
- data/lib/cucumber/formatters.rb +0 -1
- data/lib/cucumber/formatters/autotest_formatter.rb +0 -23
- data/lib/cucumber/formatters/cucumber.css +0 -132
- data/lib/cucumber/formatters/cucumber.js +0 -11
- data/lib/cucumber/formatters/html_formatter.rb +0 -151
- data/lib/cucumber/formatters/jquery.js +0 -32
- data/lib/cucumber/formatters/pretty_formatter.rb +0 -285
- data/lib/cucumber/formatters/profile_formatter.rb +0 -92
- data/lib/cucumber/formatters/progress_formatter.rb +0 -61
- data/lib/cucumber/model.rb +0 -1
- data/lib/cucumber/model/table.rb +0 -32
- data/lib/cucumber/step_methods.rb +0 -49
- data/lib/cucumber/tree.rb +0 -16
- data/lib/cucumber/tree/feature.rb +0 -105
- data/lib/cucumber/tree/features.rb +0 -21
- data/lib/cucumber/tree/given_scenario.rb +0 -13
- data/lib/cucumber/tree/scenario.rb +0 -240
- data/lib/cucumber/tree/step.rb +0 -173
- data/lib/cucumber/tree/table.rb +0 -26
- data/lib/cucumber/tree/top_down_visitor.rb +0 -23
- data/lib/cucumber/treetop_parser/feature.treetop.erb +0 -254
- data/lib/cucumber/treetop_parser/feature_ar.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_cy.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_da.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_de.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_en-lol.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_en-tx.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_en.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_es.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_et.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_fr.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_id.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_it.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_ja.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_ko.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_lt.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_nl.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_no.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_parser.rb +0 -36
- data/lib/cucumber/treetop_parser/feature_pl.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_pt.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_ro.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_ro2.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_ru.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_se.rb +0 -1951
- data/lib/cucumber/treetop_parser/feature_zh-CN.rb +0 -1951
- data/lib/cucumber/world/pending.rb +0 -22
- data/script/console +0 -10
- data/script/console.cmd +0 -1
- data/script/destroy +0 -14
- data/script/destroy.cmd +0 -1
- data/script/generate +0 -14
- data/script/generate.cmd +0 -1
- data/script/txt2html +0 -74
- data/script/txt2html.cmd +0 -1
- data/setup.rb +0 -1585
- data/spec/cucumber/cli_spec.rb +0 -521
- data/spec/cucumber/executor_spec.rb +0 -382
- data/spec/cucumber/formatters/autotest_formatter_spec.rb +0 -26
- data/spec/cucumber/formatters/features.html +0 -269
- data/spec/cucumber/formatters/html_formatter_spec.rb +0 -104
- data/spec/cucumber/formatters/pretty_formatter_spec.rb +0 -410
- data/spec/cucumber/formatters/progress_formatter_spec.rb +0 -81
- data/spec/cucumber/model/table_spec.rb +0 -32
- data/spec/cucumber/tree/feature_spec.rb +0 -122
- data/spec/cucumber/tree/row_scenario_outline_spec.rb +0 -73
- data/spec/cucumber/tree/row_scenario_spec.rb +0 -55
- data/spec/cucumber/tree/row_step_outline_spec.rb +0 -38
- data/spec/cucumber/tree/scenario_outline_spec.rb +0 -50
- data/spec/cucumber/tree/scenario_spec.rb +0 -134
- data/spec/cucumber/tree/step_outline_spec.rb +0 -17
- data/spec/cucumber/tree/step_spec.rb +0 -59
- data/spec/cucumber/treetop_parser/feature_parser_spec.rb +0 -120
data/History.txt
CHANGED
|
@@ -1,9 +1,116 @@
|
|
|
1
|
+
== 0.2.0 2009-03-18
|
|
2
|
+
|
|
3
|
+
This release sports a bunch of new and exciting features, as well a major rewrite of Cucumber's internals.
|
|
4
|
+
The rewrite was done to address technical debt and to have a code base that is easier to evolve and maintain.
|
|
5
|
+
|
|
6
|
+
There are some changes to the Gherkin language that breaks backwards compatible with the 0.1.x series.
|
|
7
|
+
Most importantly, "GivenScenario" and "More Examples" no longer exist. See the "Removed features" section
|
|
8
|
+
below for more details on how to use alternatives.
|
|
9
|
+
|
|
10
|
+
Since the grammar has changed, there are some new keywords. We have to rely on the community
|
|
11
|
+
to provide updated translations. This is much easier than before - just update languages.yml.
|
|
12
|
+
There is no static code generation anymore. To list all languages:
|
|
13
|
+
|
|
14
|
+
cucumber --lang help
|
|
15
|
+
|
|
16
|
+
And to list the keywords for a particular language:
|
|
17
|
+
|
|
18
|
+
cucumber --lang en-lol help
|
|
19
|
+
|
|
20
|
+
There are some really awesome new features in this release: Tagging, Autoformatting, automatic
|
|
21
|
+
aliasing of keywords in all languages, full Ruby 1.9 support and improved output
|
|
22
|
+
for multiline arguments are some of the highlights.
|
|
23
|
+
|
|
24
|
+
== Bugfixes
|
|
25
|
+
* New StepInvocation breaks console formatter for pending steps. (#241 Jacob Radford)
|
|
26
|
+
* Within Scenario Outlines when replacing with a nil in a step name use empty string instead. (#237 Joseph Wilk)
|
|
27
|
+
* Fixed bug with Scenario Outlines incorrectly replacing values in step tables with nil. (#237 Joseph Wilk)
|
|
28
|
+
* Within Scenario Outlines when replacing with a nil in multiline strings use empty string instead. (#238 Joseph Wilk)
|
|
29
|
+
* Re-structure the ast: Feature -> Background -> (Scenario|ScenarioOutline)*. Fixes bug with background being called outside transactions. (#181 Joseph Wilk)
|
|
30
|
+
* --strict always exits with status 1 (#230 Tim Cuthbertson)
|
|
31
|
+
* Fix error with nil values in tables raising an exception (#227 Joseph Wilk)
|
|
32
|
+
* Add support for using << in formatters to ensure the html formatter works (#210 Joseph Wilk)
|
|
33
|
+
* Explicitly require env.rb files first to avoid potential load order problems. (#213, Ben Mabey, Randy Harmon)
|
|
34
|
+
* Depend on polyglot version (0.2.4) to avoid masking require errors. (Aslak Hellesøy).
|
|
35
|
+
* -n option does not suppress the line info for a Scenario Outline (#175 Aslak Hellesøy)
|
|
36
|
+
* Errors with rspec-rails matchers in cucumber 0.1.99 (#173 David Chelimsky)
|
|
37
|
+
* Can't use an empty string as a table value in a scenario outline (#172 Aslak Hellesøy)
|
|
38
|
+
* Really skip skipped steps (#90 Aslak Hellesøy)
|
|
39
|
+
* No output for multi-line strings (#71 Aslak Hellesøy)
|
|
40
|
+
* Fix cucumber/formatters/unicode flaws on Windows (#145 Michael)
|
|
41
|
+
* Autotest-related Bugs: YAML missing (#136 Tobias Pape)
|
|
42
|
+
* Overeager "rescue LoadError" hides lots of errors (#137 Jonathan del Strother)
|
|
43
|
+
* Nested steps don't show mismatch (#116 Aslak Hellesøy)
|
|
44
|
+
* Pending steps in > steps called from steps (#65 Aslak Hellesøy)
|
|
45
|
+
|
|
46
|
+
=== New features
|
|
47
|
+
* Australian translation (Josh Graham)
|
|
48
|
+
* Added World#announce(announcment) which lets you output text to the formatted output (#222 Rob Kaufmann)
|
|
49
|
+
* Added Table#transpose to to allow use of vertically aligned table keys (Torbjørn Vatn, Aslak Hellesøy)
|
|
50
|
+
* Added Table#map_headers to to allow use of more readable headers (Rob Holland)
|
|
51
|
+
* New -S/--step-definitions option. Useful (among other things) for tools that implement automcompletion. (#208 Aslak Hellesøy).
|
|
52
|
+
* The cucumber.rake file defines a dummy :features task if Cucumber is not installed (#225 Josh Nichols)
|
|
53
|
+
* Added Table#map_column! to ease casting of cell values into relevant types (#223 Rob Holland)
|
|
54
|
+
* New --no-diff option (#218 Bryan Ash)
|
|
55
|
+
* Rails generators supports testunit and rspec option, defaulting to rspec (#217 Josh Nichols)
|
|
56
|
+
* Sinatra Example (#204 Rob Holland)
|
|
57
|
+
* Keywords can be aliased in languages.yml. See English for an example (examples: Examples|Scenarios)
|
|
58
|
+
* Adding support for Background (#153 Joseph Wilk)
|
|
59
|
+
* Added Česky/Czech (Vojtech Salbaba)
|
|
60
|
+
* New --no-multiline option to reduce noise in output. Useful if lots of features are failing. (Aslak Hellesøy)
|
|
61
|
+
* Added ability to pass URIs to cucumber in addition to files and directories. Useful for troubleshooting! (Aslak Hellesøy)
|
|
62
|
+
* Groups of tabular scenarios (#57 Aslak Hellesøy)
|
|
63
|
+
* Tagging scenarios and features. Pick the ones to run with --tags (#54 Aslak Hellesøy)
|
|
64
|
+
* Make the current scenario available to the steps. (#44 Aslak Hellesøy)
|
|
65
|
+
* Step definition snippets contain a 'pending' call (#84 Aslak Hellesøy)
|
|
66
|
+
* Call multiline steps from other steps (#144 Aslak Hellesøy)
|
|
67
|
+
* Run cucumber with --autoformat DIR to reformat (pretty print) all of your feature files. (Aslak Hellesøy)
|
|
68
|
+
* New --strict option exits with an error code if there are undefined steps. (#52 Aslak Hellesøy)
|
|
69
|
+
* Given, When, Then methods (used in step definitions) are automatically aliased to current language. Use $KCODE='u' in env.rb if needed.
|
|
70
|
+
* Run cucumber --language help to see all supported languages. (Aslak Hellesøy)
|
|
71
|
+
* Run cucumber --language LANG help to see keywords for a given language. (Aslak Hellesøy)
|
|
72
|
+
* Multiline arguments (tables and """ strings) are printed in the output. (Aslak Hellesøy)
|
|
73
|
+
* It's no longer necessary to compile the Treetop grammar when adding a new language. Localised parser is generated at runtime. (Aslak Hellesøy)
|
|
74
|
+
* New --guess option tries to guess the best step definition match instead of raising Cucumber::Multiple. (Jake Howerton)
|
|
75
|
+
|
|
76
|
+
=== Removed features
|
|
77
|
+
* "GivenScenario" is gone. Instead you can call Steps from Step Definitions, or use the new Background feature (#153)
|
|
78
|
+
* "More Examples" is gone. "Scenario" + "More Examples" is no longer supported. Use "Scenario Outline" + "Examples" instead.
|
|
79
|
+
* Pure Ruby features are no longer supported.
|
|
80
|
+
* Remove --color option in autotest. Can be added manually in cucumber.yml (#215 Jean-Michel Garnier)
|
|
81
|
+
|
|
82
|
+
== (0.16.4 aslakhellesoy-cucumber gem on GitHub)
|
|
83
|
+
|
|
84
|
+
Bugfix release.
|
|
85
|
+
|
|
86
|
+
IMPORTANT NOTE FOR RAILS USERS.
|
|
87
|
+
The template used to generate your features/support/env.rb has changed. You have to apply a minor change
|
|
88
|
+
manually for existing Rails projects when you upgrade to this version. Change this:
|
|
89
|
+
|
|
90
|
+
require 'webrat/rspec-rails'
|
|
91
|
+
|
|
92
|
+
to this:
|
|
93
|
+
|
|
94
|
+
require 'webrat/core/matchers'
|
|
95
|
+
|
|
96
|
+
=== New features
|
|
97
|
+
* Finnish translation (Tero Tilus)
|
|
98
|
+
* Use Webrat's #contain matcher in generated "I should (not) see" step definitions (Bryan Helmkamp)
|
|
99
|
+
|
|
100
|
+
== Bugfixes
|
|
101
|
+
* Escaped quotes - \" - inside multiline strings will be unescaped.
|
|
102
|
+
* Flush output in HTML formatter since JRuby doesnt do it automatically (Diego Carrion)
|
|
103
|
+
* Better handling of ARGV (#169 David Chelimsky, Ben Mabey)
|
|
104
|
+
* Compatibility with ruby-debug (do ARGV.dup in bin/cucumber so it can restart ruby with same args) (Aslak Hellesøy)
|
|
105
|
+
|
|
1
106
|
== 0.1.16 2009-01-19
|
|
2
107
|
|
|
3
108
|
This is a small bugfix release. The most notable improvement is compatibility with Webrat 0.4. Rails/Webrat users should
|
|
4
109
|
upgrade both Cucumber and Webrat gems.
|
|
5
110
|
|
|
6
111
|
=== New features
|
|
112
|
+
* Allow argument placeholders in step tables and multiline comments (#121 Joseph Wilk)
|
|
113
|
+
* Scenario Outline can be followed by several named Examples sections (#123 Aslak Hellesøy)
|
|
7
114
|
* Add the #binary= method back to the Rake task. It is needed by merb_cucumber for running the features of a merb app with it's bundled gems. (Thomas Marek)
|
|
8
115
|
* Added a /^When I go to (.+)$/ step definition to webrat_steps.rb and a simple page name to path mapping method (Bryan Helmkamp)
|
|
9
116
|
|
|
@@ -241,13 +348,12 @@ Tables used to define more examples after a scenario must now be prefixed. In En
|
|
|
241
348
|
And I have entered 70 into the calculator
|
|
242
349
|
When I press add
|
|
243
350
|
Then the result should be 120 on the screen
|
|
244
|
-
And the result class should be Fixnum
|
|
245
351
|
|
|
246
352
|
More Examples:
|
|
247
|
-
| input_1 | input_2 | button | output |
|
|
248
|
-
| 20 | 30 | add | 50 |
|
|
249
|
-
| 2 | 5 | add | 7 |
|
|
250
|
-
| 0 | 40 | add | 40 |
|
|
353
|
+
| input_1 | input_2 | button | output |
|
|
354
|
+
| 20 | 30 | add | 50 |
|
|
355
|
+
| 2 | 5 | add | 7 |
|
|
356
|
+
| 0 | 40 | add | 40 |
|
|
251
357
|
|
|
252
358
|
Languages that are not updated yet will have to use "More Examples" until we get the translations.
|
|
253
359
|
|
data/License.txt
CHANGED
data/Manifest.txt
CHANGED
|
@@ -7,9 +7,6 @@ bin/cucumber
|
|
|
7
7
|
config/hoe.rb
|
|
8
8
|
config/requirements.rb
|
|
9
9
|
cucumber.yml
|
|
10
|
-
examples/calculator_ruby_features/Rakefile
|
|
11
|
-
examples/calculator_ruby_features/features/addition.rb
|
|
12
|
-
examples/calculator_ruby_features/features/step_definitons/calculator_steps.rb
|
|
13
10
|
examples/cs/README.textile
|
|
14
11
|
examples/cs/Rakefile
|
|
15
12
|
examples/cs/compile.bat
|
|
@@ -33,6 +30,12 @@ examples/i18n/de/features/addition.feature
|
|
|
33
30
|
examples/i18n/de/features/division.feature
|
|
34
31
|
examples/i18n/de/features/step_definitons/calculator_steps.rb
|
|
35
32
|
examples/i18n/de/lib/calculator.rb
|
|
33
|
+
examples/i18n/en-lol/Rakefile
|
|
34
|
+
examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb
|
|
35
|
+
examples/i18n/en-lol/features/stuffing.feature
|
|
36
|
+
examples/i18n/en-lol/features/support/env.rb
|
|
37
|
+
examples/i18n/en-lol/lib/basket.rb
|
|
38
|
+
examples/i18n/en-lol/lib/belly.rb
|
|
36
39
|
examples/i18n/en/Rakefile
|
|
37
40
|
examples/i18n/en/features/addition.feature
|
|
38
41
|
examples/i18n/en/features/division.feature
|
|
@@ -43,9 +46,15 @@ examples/i18n/es/features/adicion.feature
|
|
|
43
46
|
examples/i18n/es/features/step_definitons/calculador_steps.rb
|
|
44
47
|
examples/i18n/es/lib/calculador.rb
|
|
45
48
|
examples/i18n/et/Rakefile
|
|
49
|
+
examples/i18n/et/features/jagamine.feature
|
|
46
50
|
examples/i18n/et/features/liitmine.feature
|
|
47
51
|
examples/i18n/et/features/step_definitions/kalkulaator_steps.rb
|
|
48
52
|
examples/i18n/et/lib/kalkulaator.rb
|
|
53
|
+
examples/i18n/fi/Rakefile
|
|
54
|
+
examples/i18n/fi/features/jakolasku.feature
|
|
55
|
+
examples/i18n/fi/features/step_definitons/laskin_steps.rb
|
|
56
|
+
examples/i18n/fi/features/yhteenlasku.feature
|
|
57
|
+
examples/i18n/fi/lib/laskin.rb
|
|
49
58
|
examples/i18n/fr/Rakefile
|
|
50
59
|
examples/i18n/fr/features/addition.feature
|
|
51
60
|
examples/i18n/fr/features/step_definitions/calculatrice_steps.rb
|
|
@@ -59,7 +68,6 @@ examples/i18n/it/Rakefile
|
|
|
59
68
|
examples/i18n/it/features/somma.feature
|
|
60
69
|
examples/i18n/it/features/step_definitons/calcolatrice_steps.rb
|
|
61
70
|
examples/i18n/it/lib/calcolatrice.rb
|
|
62
|
-
examples/i18n/ja/README.txt
|
|
63
71
|
examples/i18n/ja/Rakefile
|
|
64
72
|
examples/i18n/ja/features/addition.feature
|
|
65
73
|
examples/i18n/ja/features/division.feature
|
|
@@ -78,6 +86,7 @@ examples/i18n/lt/lib/calculator.rb
|
|
|
78
86
|
examples/i18n/no/Rakefile
|
|
79
87
|
examples/i18n/no/features/step_definitons/kalkulator_steps.rb
|
|
80
88
|
examples/i18n/no/features/summering.feature
|
|
89
|
+
examples/i18n/no/features/support/env.rb
|
|
81
90
|
examples/i18n/no/lib/kalkulator.rb
|
|
82
91
|
examples/i18n/pt/Rakefile
|
|
83
92
|
examples/i18n/pt/features/adicao.feature
|
|
@@ -87,6 +96,14 @@ examples/i18n/ro/Rakefile
|
|
|
87
96
|
examples/i18n/ro/features/step_definitons/calculator_steps.rb
|
|
88
97
|
examples/i18n/ro/features/suma.feature
|
|
89
98
|
examples/i18n/ro/lib/calculator.rb
|
|
99
|
+
examples/i18n/ru/Rakefile
|
|
100
|
+
examples/i18n/ru/features/addition.feature
|
|
101
|
+
examples/i18n/ru/features/consecutive_calculations.feature
|
|
102
|
+
examples/i18n/ru/features/division.feature
|
|
103
|
+
examples/i18n/ru/features/step_definitons/calculator_steps.rb
|
|
104
|
+
examples/i18n/ru/features/support/env.rb
|
|
105
|
+
examples/i18n/ru/features/support/world.rb
|
|
106
|
+
examples/i18n/ru/lib/calculator.rb
|
|
90
107
|
examples/i18n/se/Rakefile
|
|
91
108
|
examples/i18n/se/features/step_definitons/kalkulator_steps.rb
|
|
92
109
|
examples/i18n/se/features/summering.feature
|
|
@@ -95,24 +112,71 @@ examples/i18n/zh-CN/Rakefile
|
|
|
95
112
|
examples/i18n/zh-CN/features/addition.feature
|
|
96
113
|
examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb
|
|
97
114
|
examples/i18n/zh-CN/lib/calculator.rb
|
|
115
|
+
examples/i18n/zh-TW/Rakefile
|
|
116
|
+
examples/i18n/zh-TW/features/addition.feature
|
|
117
|
+
examples/i18n/zh-TW/features/division.feature
|
|
118
|
+
examples/i18n/zh-TW/features/step_definitons/calculator_steps.rb
|
|
119
|
+
examples/i18n/zh-TW/lib/calculator.rb
|
|
98
120
|
examples/java/README.textile
|
|
99
121
|
examples/java/Rakefile
|
|
100
122
|
examples/java/features/hello.feature
|
|
101
123
|
examples/java/features/step_definitons/hello_steps.rb
|
|
102
124
|
examples/java/features/step_definitons/tree_steps.rb
|
|
103
125
|
examples/java/features/tree.feature
|
|
126
|
+
examples/java/src/cucumber/demo/Hello.java
|
|
127
|
+
examples/jbehave/README.textile
|
|
128
|
+
examples/jbehave/features/support/env.rb
|
|
129
|
+
examples/jbehave/features/trading.feature
|
|
130
|
+
examples/jbehave/pom.xml
|
|
131
|
+
examples/jbehave/src/main/java/cukes/jbehave/examples/trader/converters/TraderConverter.java
|
|
132
|
+
examples/jbehave/src/main/java/cukes/jbehave/examples/trader/model/Stock.java
|
|
133
|
+
examples/jbehave/src/main/java/cukes/jbehave/examples/trader/model/Trader.java
|
|
134
|
+
examples/jbehave/src/main/java/cukes/jbehave/examples/trader/persistence/TraderPersister.java
|
|
135
|
+
examples/jbehave/src/main/java/cukes/jbehave/examples/trader/scenarios/TraderSteps.java
|
|
104
136
|
examples/selenium/Rakefile
|
|
105
137
|
examples/selenium/features/search.feature
|
|
106
|
-
examples/selenium/features/step_definitons/
|
|
138
|
+
examples/selenium/features/step_definitons/search_steps.rb
|
|
139
|
+
examples/selenium/features/support/env.rb
|
|
140
|
+
examples/selenium_webrat/Rakefile
|
|
141
|
+
examples/selenium_webrat/features/search.feature
|
|
142
|
+
examples/selenium_webrat/features/step_definitons/search_steps.rb
|
|
143
|
+
examples/selenium_webrat/features/support/env.rb
|
|
107
144
|
examples/self_test/README.textile
|
|
145
|
+
examples/self_test/Rakefile
|
|
146
|
+
examples/self_test/features/background/failing_background.feature
|
|
147
|
+
examples/self_test/features/background/failing_background_after_success.feature
|
|
148
|
+
examples/self_test/features/background/multiline_args_background.feature
|
|
149
|
+
examples/self_test/features/background/passing_background.feature
|
|
150
|
+
examples/self_test/features/background/pending_background.feature
|
|
151
|
+
examples/self_test/features/background/scenario_outline_failing_background.feature
|
|
152
|
+
examples/self_test/features/background/scenario_outline_passing_background.feature
|
|
153
|
+
examples/self_test/features/call_undefined_step_from_step_def.feature
|
|
154
|
+
examples/self_test/features/failing_expectation.feature
|
|
155
|
+
examples/self_test/features/lots_of_undefined.feature
|
|
108
156
|
examples/self_test/features/outline_sample.feature
|
|
109
157
|
examples/self_test/features/sample.feature
|
|
110
158
|
examples/self_test/features/step_definitions/sample_steps.rb
|
|
159
|
+
examples/self_test/features/support/env.rb
|
|
160
|
+
examples/self_test/features/support/tag_count_formatter.rb
|
|
161
|
+
examples/sinatra/Rakefile
|
|
162
|
+
examples/sinatra/app.rb
|
|
163
|
+
examples/sinatra/features/add.feature
|
|
164
|
+
examples/sinatra/features/step_definitions/add_steps.rb
|
|
165
|
+
examples/sinatra/features/support/env.rb
|
|
166
|
+
examples/sinatra/views/add.erb
|
|
167
|
+
examples/sinatra/views/layout.erb
|
|
111
168
|
examples/test_unit/Rakefile
|
|
112
169
|
examples/test_unit/features/step_definitions/test_unit_steps.rb
|
|
113
170
|
examples/test_unit/features/test_unit.feature
|
|
114
171
|
examples/tickets/Rakefile
|
|
115
172
|
examples/tickets/cucumber.yml
|
|
173
|
+
examples/tickets/features/172.feature
|
|
174
|
+
examples/tickets/features/177/1.feature
|
|
175
|
+
examples/tickets/features/177/2.feature
|
|
176
|
+
examples/tickets/features/177/3.feature
|
|
177
|
+
examples/tickets/features/180.feature
|
|
178
|
+
examples/tickets/features/236.feature
|
|
179
|
+
examples/tickets/features/241.feature
|
|
116
180
|
examples/tickets/features/lib/eatting_machine.rb
|
|
117
181
|
examples/tickets/features/lib/pantry.rb
|
|
118
182
|
examples/tickets/features/scenario_outline.feature
|
|
@@ -124,8 +188,12 @@ examples/watir/Rakefile
|
|
|
124
188
|
examples/watir/features/search.feature
|
|
125
189
|
examples/watir/features/step_definitons/search_steps.rb
|
|
126
190
|
examples/watir/features/support/env.rb
|
|
191
|
+
features/background.feature
|
|
127
192
|
features/cucumber_cli.feature
|
|
193
|
+
features/cucumber_cli_diff_disabled.feature
|
|
128
194
|
features/cucumber_cli_outlines.feature
|
|
195
|
+
features/custom_formatter.feature
|
|
196
|
+
features/report_called_undefined_steps.feature
|
|
129
197
|
features/step_definitions/cucumber_steps.rb
|
|
130
198
|
features/step_definitions/extra_steps.rb
|
|
131
199
|
features/support/env.rb
|
|
@@ -135,8 +203,8 @@ gem_tasks/features.rake
|
|
|
135
203
|
gem_tasks/fix_cr_lf.rake
|
|
136
204
|
gem_tasks/flog.rake
|
|
137
205
|
gem_tasks/gemspec.rake
|
|
206
|
+
gem_tasks/jar.rake
|
|
138
207
|
gem_tasks/rspec.rake
|
|
139
|
-
gem_tasks/treetop.rake
|
|
140
208
|
gem_tasks/yard.rake
|
|
141
209
|
lib/autotest/cucumber.rb
|
|
142
210
|
lib/autotest/cucumber_mixin.rb
|
|
@@ -145,69 +213,63 @@ lib/autotest/cucumber_rails_rspec.rb
|
|
|
145
213
|
lib/autotest/cucumber_rspec.rb
|
|
146
214
|
lib/autotest/discover.rb
|
|
147
215
|
lib/cucumber.rb
|
|
216
|
+
lib/cucumber/ast.rb
|
|
217
|
+
lib/cucumber/ast/background.rb
|
|
218
|
+
lib/cucumber/ast/comment.rb
|
|
219
|
+
lib/cucumber/ast/examples.rb
|
|
220
|
+
lib/cucumber/ast/feature.rb
|
|
221
|
+
lib/cucumber/ast/feature_element.rb
|
|
222
|
+
lib/cucumber/ast/features.rb
|
|
223
|
+
lib/cucumber/ast/outline_table.rb
|
|
224
|
+
lib/cucumber/ast/py_string.rb
|
|
225
|
+
lib/cucumber/ast/scenario.rb
|
|
226
|
+
lib/cucumber/ast/scenario_outline.rb
|
|
227
|
+
lib/cucumber/ast/step.rb
|
|
228
|
+
lib/cucumber/ast/step_collection.rb
|
|
229
|
+
lib/cucumber/ast/step_invocation.rb
|
|
230
|
+
lib/cucumber/ast/table.rb
|
|
231
|
+
lib/cucumber/ast/tags.rb
|
|
232
|
+
lib/cucumber/ast/visitor.rb
|
|
148
233
|
lib/cucumber/broadcaster.rb
|
|
149
|
-
lib/cucumber/cli.rb
|
|
234
|
+
lib/cucumber/cli/configuration.rb
|
|
235
|
+
lib/cucumber/cli/language_help_formatter.rb
|
|
236
|
+
lib/cucumber/cli/main.rb
|
|
150
237
|
lib/cucumber/core_ext/exception.rb
|
|
238
|
+
lib/cucumber/core_ext/instance_exec.rb
|
|
151
239
|
lib/cucumber/core_ext/proc.rb
|
|
152
240
|
lib/cucumber/core_ext/string.rb
|
|
153
|
-
lib/cucumber/
|
|
154
|
-
lib/cucumber/
|
|
155
|
-
lib/cucumber/
|
|
156
|
-
lib/cucumber/
|
|
157
|
-
lib/cucumber/
|
|
158
|
-
lib/cucumber/
|
|
159
|
-
lib/cucumber/
|
|
160
|
-
lib/cucumber/
|
|
161
|
-
lib/cucumber/
|
|
162
|
-
lib/cucumber/
|
|
163
|
-
lib/cucumber/
|
|
241
|
+
lib/cucumber/formatter.rb
|
|
242
|
+
lib/cucumber/formatter/ansicolor.rb
|
|
243
|
+
lib/cucumber/formatter/color_io.rb
|
|
244
|
+
lib/cucumber/formatter/console.rb
|
|
245
|
+
lib/cucumber/formatter/cucumber.css
|
|
246
|
+
lib/cucumber/formatter/cucumber.sass
|
|
247
|
+
lib/cucumber/formatter/html.rb
|
|
248
|
+
lib/cucumber/formatter/pretty.rb
|
|
249
|
+
lib/cucumber/formatter/profile.rb
|
|
250
|
+
lib/cucumber/formatter/progress.rb
|
|
251
|
+
lib/cucumber/formatter/rerun.rb
|
|
252
|
+
lib/cucumber/formatter/unicode.rb
|
|
164
253
|
lib/cucumber/formatters/unicode.rb
|
|
254
|
+
lib/cucumber/jbehave.rb
|
|
165
255
|
lib/cucumber/languages.yml
|
|
166
|
-
lib/cucumber/
|
|
167
|
-
lib/cucumber/
|
|
256
|
+
lib/cucumber/parser.rb
|
|
257
|
+
lib/cucumber/parser/basic.rb
|
|
258
|
+
lib/cucumber/parser/feature.rb
|
|
259
|
+
lib/cucumber/parser/feature.tt
|
|
260
|
+
lib/cucumber/parser/i18n.tt
|
|
261
|
+
lib/cucumber/parser/table.rb
|
|
262
|
+
lib/cucumber/parser/table.tt
|
|
263
|
+
lib/cucumber/parser/treetop_ext.rb
|
|
168
264
|
lib/cucumber/platform.rb
|
|
169
265
|
lib/cucumber/rails/rspec.rb
|
|
170
266
|
lib/cucumber/rails/world.rb
|
|
171
267
|
lib/cucumber/rake/task.rb
|
|
172
|
-
lib/cucumber/
|
|
268
|
+
lib/cucumber/step_definition.rb
|
|
269
|
+
lib/cucumber/step_match.rb
|
|
173
270
|
lib/cucumber/step_mother.rb
|
|
174
|
-
lib/cucumber/tree.rb
|
|
175
|
-
lib/cucumber/tree/feature.rb
|
|
176
|
-
lib/cucumber/tree/features.rb
|
|
177
|
-
lib/cucumber/tree/given_scenario.rb
|
|
178
|
-
lib/cucumber/tree/scenario.rb
|
|
179
|
-
lib/cucumber/tree/step.rb
|
|
180
|
-
lib/cucumber/tree/table.rb
|
|
181
|
-
lib/cucumber/tree/top_down_visitor.rb
|
|
182
|
-
lib/cucumber/treetop_parser/feature.treetop.erb
|
|
183
|
-
lib/cucumber/treetop_parser/feature_ar.rb
|
|
184
|
-
lib/cucumber/treetop_parser/feature_cy.rb
|
|
185
|
-
lib/cucumber/treetop_parser/feature_da.rb
|
|
186
|
-
lib/cucumber/treetop_parser/feature_de.rb
|
|
187
|
-
lib/cucumber/treetop_parser/feature_en-lol.rb
|
|
188
|
-
lib/cucumber/treetop_parser/feature_en-tx.rb
|
|
189
|
-
lib/cucumber/treetop_parser/feature_en.rb
|
|
190
|
-
lib/cucumber/treetop_parser/feature_es.rb
|
|
191
|
-
lib/cucumber/treetop_parser/feature_et.rb
|
|
192
|
-
lib/cucumber/treetop_parser/feature_fr.rb
|
|
193
|
-
lib/cucumber/treetop_parser/feature_id.rb
|
|
194
|
-
lib/cucumber/treetop_parser/feature_it.rb
|
|
195
|
-
lib/cucumber/treetop_parser/feature_ja.rb
|
|
196
|
-
lib/cucumber/treetop_parser/feature_ko.rb
|
|
197
|
-
lib/cucumber/treetop_parser/feature_lt.rb
|
|
198
|
-
lib/cucumber/treetop_parser/feature_nl.rb
|
|
199
|
-
lib/cucumber/treetop_parser/feature_no.rb
|
|
200
|
-
lib/cucumber/treetop_parser/feature_parser.rb
|
|
201
|
-
lib/cucumber/treetop_parser/feature_pl.rb
|
|
202
|
-
lib/cucumber/treetop_parser/feature_pt.rb
|
|
203
|
-
lib/cucumber/treetop_parser/feature_ro.rb
|
|
204
|
-
lib/cucumber/treetop_parser/feature_ro2.rb
|
|
205
|
-
lib/cucumber/treetop_parser/feature_ru.rb
|
|
206
|
-
lib/cucumber/treetop_parser/feature_se.rb
|
|
207
|
-
lib/cucumber/treetop_parser/feature_zh-CN.rb
|
|
208
271
|
lib/cucumber/version.rb
|
|
209
272
|
lib/cucumber/world.rb
|
|
210
|
-
lib/cucumber/world/pending.rb
|
|
211
273
|
rails_generators/cucumber/USAGE
|
|
212
274
|
rails_generators/cucumber/cucumber_generator.rb
|
|
213
275
|
rails_generators/cucumber/templates/cucumber
|
|
@@ -219,45 +281,40 @@ rails_generators/feature/USAGE
|
|
|
219
281
|
rails_generators/feature/feature_generator.rb
|
|
220
282
|
rails_generators/feature/templates/feature.erb
|
|
221
283
|
rails_generators/feature/templates/steps.erb
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
284
|
+
spec/cucumber/ast/background_spec.rb
|
|
285
|
+
spec/cucumber/ast/feature_factory.rb
|
|
286
|
+
spec/cucumber/ast/feature_spec.rb
|
|
287
|
+
spec/cucumber/ast/py_string_spec.rb
|
|
288
|
+
spec/cucumber/ast/scenario_outline_spec.rb
|
|
289
|
+
spec/cucumber/ast/scenario_spec.rb
|
|
290
|
+
spec/cucumber/ast/step_collection_spec.rb
|
|
291
|
+
spec/cucumber/ast/step_spec.rb
|
|
292
|
+
spec/cucumber/ast/table_spec.rb
|
|
293
|
+
spec/cucumber/ast/tags_spec.rb
|
|
231
294
|
spec/cucumber/broadcaster_spec.rb
|
|
232
|
-
spec/cucumber/
|
|
295
|
+
spec/cucumber/cli/configuration_spec.rb
|
|
296
|
+
spec/cucumber/cli/main_spec.rb
|
|
233
297
|
spec/cucumber/core_ext/proc_spec.rb
|
|
234
298
|
spec/cucumber/core_ext/string_spec.rb
|
|
235
|
-
spec/cucumber/
|
|
236
|
-
spec/cucumber/
|
|
237
|
-
spec/cucumber/
|
|
238
|
-
spec/cucumber/
|
|
239
|
-
spec/cucumber/
|
|
240
|
-
spec/cucumber/
|
|
299
|
+
spec/cucumber/formatter/ansicolor_spec.rb
|
|
300
|
+
spec/cucumber/formatter/color_io_spec.rb
|
|
301
|
+
spec/cucumber/formatter/html/cucumber.css
|
|
302
|
+
spec/cucumber/formatter/html/cucumber.js
|
|
303
|
+
spec/cucumber/formatter/html/index.html
|
|
304
|
+
spec/cucumber/formatter/html/jquery-1.3.min.js
|
|
305
|
+
spec/cucumber/formatter/html/jquery.uitableedit.js
|
|
241
306
|
spec/cucumber/formatters/profile_formatter_spec.rb
|
|
242
|
-
spec/cucumber/
|
|
243
|
-
spec/cucumber/
|
|
307
|
+
spec/cucumber/parser/feature_parser_spec.rb
|
|
308
|
+
spec/cucumber/parser/table_parser_spec.rb
|
|
244
309
|
spec/cucumber/rails/stubs/mini_rails.rb
|
|
245
310
|
spec/cucumber/rails/stubs/test_help.rb
|
|
246
311
|
spec/cucumber/rails/world_spec.rb
|
|
247
312
|
spec/cucumber/sell_cucumbers.feature
|
|
313
|
+
spec/cucumber/step_definition_spec.rb
|
|
248
314
|
spec/cucumber/step_mother_spec.rb
|
|
249
|
-
spec/cucumber/tree/feature_spec.rb
|
|
250
|
-
spec/cucumber/tree/row_scenario_outline_spec.rb
|
|
251
|
-
spec/cucumber/tree/row_scenario_spec.rb
|
|
252
|
-
spec/cucumber/tree/row_step_outline_spec.rb
|
|
253
|
-
spec/cucumber/tree/scenario_outline_spec.rb
|
|
254
|
-
spec/cucumber/tree/scenario_spec.rb
|
|
255
|
-
spec/cucumber/tree/step_outline_spec.rb
|
|
256
|
-
spec/cucumber/tree/step_spec.rb
|
|
257
315
|
spec/cucumber/treetop_parser/empty_feature.feature
|
|
258
316
|
spec/cucumber/treetop_parser/empty_scenario.feature
|
|
259
317
|
spec/cucumber/treetop_parser/empty_scenario_outline.feature
|
|
260
|
-
spec/cucumber/treetop_parser/feature_parser_spec.rb
|
|
261
318
|
spec/cucumber/treetop_parser/fit_scenario.feature
|
|
262
319
|
spec/cucumber/treetop_parser/given_scenario.feature
|
|
263
320
|
spec/cucumber/treetop_parser/invalid_scenario_outlines.feature
|
|
@@ -267,6 +324,7 @@ spec/cucumber/treetop_parser/scenario_outline.feature
|
|
|
267
324
|
spec/cucumber/treetop_parser/spaces.feature
|
|
268
325
|
spec/cucumber/treetop_parser/test_dos.feature
|
|
269
326
|
spec/cucumber/treetop_parser/with_comments.feature
|
|
327
|
+
spec/cucumber/treetop_parser/with_tags.feature
|
|
270
328
|
spec/cucumber/world/pending_spec.rb
|
|
271
329
|
spec/spec.opts
|
|
272
330
|
spec/spec_helper.rb
|