Skip to content

Commit

Permalink
Update manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
aslakhellesoy committed Sep 27, 2009
1 parent e0b8077 commit 5f0171b
Show file tree
Hide file tree
Showing 15 changed files with 327 additions and 444 deletions.
5 changes: 5 additions & 0 deletions History.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
* Raise a proper error message if someone forgets @ for tags, example: --tags ~foo or --tags bar. (Aslak Hellesøy)
* lib/cucumber/formatter/html.rb requires ruby-debug (#455 Assaf Arkin)

=== Removed features
* The profile and usage formatters have been combined to the usage formatter. Use it eith or without --dry-run. See --help for more. (Aslak Hellesøy)
* The steps formatter has been renamed to stepdefs formatter. (Aslak Hellesøy)
* The --dry-run option no longer implies --no-source and --no-snippets. It only implies --no-snippets. (Aslak Hellesøy)

== 0.3.103 2009-09-24

This release gives you back some of the control over the Rails environment that was accidentally taken away from you in the
Expand Down
14 changes: 10 additions & 4 deletions Manifest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,14 @@ examples/python/features/step_definitions/fib_steps.py
examples/python/features/step_definitions/fib_steps.rb
examples/python/features/support/env.rb
examples/python/lib/fib.py
examples/ramaze/README.textile
examples/ramaze/Rakefile
examples/ramaze/app.rb
examples/ramaze/features/add.feature
examples/ramaze/features/step_definitions/add_steps.rb
examples/ramaze/features/support/env.rb
examples/ramaze/layout/default.html.erb
examples/ramaze/view/index.html.erb
examples/selenium/Rakefile
examples/selenium/features/search.feature
examples/selenium/features/step_definitons/search_steps.rb
Expand Down Expand Up @@ -288,12 +296,11 @@ features/report_called_undefined_steps.feature
features/snippet.feature
features/step_definitions/cucumber_steps.rb
features/step_definitions/extra_steps.rb
features/steps_formatter.feature
features/support/env.rb
features/table_diffing.feature
features/transform.feature
features/unicode_table.feature
features/usage.feature
features/usage_and_stepdefs_formatter.feature
features/work_in_progress.feature
gem_tasks/contributors.rake
gem_tasks/deployment.rake
Expand Down Expand Up @@ -355,14 +362,13 @@ lib/cucumber/formatter/junit.rb
lib/cucumber/formatter/ordered_xml_markup.rb
lib/cucumber/formatter/pdf.rb
lib/cucumber/formatter/pretty.rb
lib/cucumber/formatter/profile.rb
lib/cucumber/formatter/progress.rb
lib/cucumber/formatter/rerun.rb
lib/cucumber/formatter/stepdefs.rb
lib/cucumber/formatter/steps.rb
lib/cucumber/formatter/tag_cloud.rb
lib/cucumber/formatter/unicode.rb
lib/cucumber/formatter/usage.rb
lib/cucumber/formatters/unicode.rb
lib/cucumber/language_support.rb
lib/cucumber/language_support/language_methods.rb
lib/cucumber/language_support/step_definition_methods.rb
Expand Down
3 changes: 0 additions & 3 deletions examples/i18n/en/features/step_definitons/calculator_steps.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,3 @@
Then /the result should be (.*) on the screen/ do |result|
@result.should == result.to_f
end

Then /some unused stepdef/ do
end
10 changes: 5 additions & 5 deletions features/cucumber_cli.feature
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ Feature: Cucumber command line
"""

Scenario: --dry-run
When I run cucumber --dry-run --no-snippets features/*.feature --tags ~@lots
When I run cucumber --dry-run --no-source features/*.feature --tags ~@lots
Then it should pass with
"""
Feature: Calling undefined step
Expand Down Expand Up @@ -370,7 +370,7 @@ Feature: Cucumber command line
"""

Scenario: Multiple formatters and outputs
When I run cucumber --format progress --out tmp/progress.txt --format pretty --out tmp/pretty.txt --dry-run features/lots_of_undefined.feature
When I run cucumber --format progress --out tmp/progress.txt --format pretty --out tmp/pretty.txt --no-source --dry-run features/lots_of_undefined.feature
And "examples/self_test/tmp/progress.txt" should contain
"""
UUUUU
Expand Down Expand Up @@ -505,7 +505,7 @@ Feature: Cucumber command line
"""

Scenario: Run with a negative tag
When I run cucumber -q features/sample.feature --dry-run --tags ~@four
When I run cucumber -q features/sample.feature --no-source --dry-run --tags ~@four
Then it should pass with
"""
# Feature comment
Expand All @@ -529,7 +529,7 @@ Feature: Cucumber command line
"""

Scenario: Run with limited tag count, blowing it on scenario
When I run cucumber -q features/tags_sample.feature --dry-run --tags @sample_three:1
When I run cucumber -q features/tags_sample.feature --no-source --dry-run --tags @sample_three:1
Then it should fail with
"""
@sample_one
Expand Down Expand Up @@ -557,7 +557,7 @@ Feature: Cucumber command line
"""

Scenario: Run with limited tag count, blowing it via feature inheritance
When I run cucumber -q features/tags_sample.feature --dry-run --tags @sample_one:1
When I run cucumber -q features/tags_sample.feature --no-source --dry-run --tags @sample_one:1
Then it should fail with
"""
@sample_one
Expand Down
170 changes: 0 additions & 170 deletions features/steps_and_usage_formatters.feature

This file was deleted.

26 changes: 0 additions & 26 deletions features/steps_formatter.feature

This file was deleted.

Loading

0 comments on commit 5f0171b

Please sign in to comment.