cucumber 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitattributes +1 -0
- data/.gitignore +17 -0
- data/History.txt +27 -0
- data/{License.txt → LICENSE} +0 -0
- data/Manifest.txt +0 -487
- data/README.rdoc +26 -0
- data/Rakefile +54 -7
- data/VERSION.yml +4 -0
- data/bin/cucumber +1 -1
- data/cucumber.gemspec +743 -0
- data/cucumber.yml +3 -1
- data/examples/cs/.gitignore +1 -0
- data/examples/i18n/Rakefile +1 -1
- data/examples/i18n/de/.gitignore +1 -0
- data/examples/i18n/en/.gitignore +1 -0
- data/examples/i18n/fi/.gitignore +1 -0
- data/examples/i18n/hu/.gitignore +1 -0
- data/examples/i18n/id/.gitignore +1 -0
- data/examples/i18n/ja/.gitignore +1 -0
- data/examples/i18n/ko/.gitignore +1 -0
- data/examples/i18n/lt/.gitignore +1 -0
- data/examples/i18n/pl/.gitignore +1 -0
- data/examples/i18n/sk/.gitignore +1 -0
- data/examples/i18n/sr-latn/Rakefile +6 -0
- data/examples/i18n/sr-latn/features/sabiranje.feature +18 -0
- data/examples/i18n/sr-latn/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/sr-latn/lib/calculator.rb +12 -0
- data/examples/i18n/sr/Rakefile +6 -0
- data/examples/i18n/sr/features/sabiranje.feature +18 -0
- data/examples/i18n/sr/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/sr/lib/calculator.rb +12 -0
- data/examples/i18n/tr/.gitignore +1 -0
- data/examples/i18n/tr/features/{bo/314/210lme.feature → bolme.feature} +0 -0
- data/examples/i18n/tr/features/step_definitons/{hesap_makinesi_ad/304/261mlar/304/261.rb → hesap_makinesi_adimlari.rb} +0 -0
- data/examples/i18n/zh-TW/.gitignore +1 -0
- data/examples/java/.gitignore +1 -0
- data/examples/java/src/.gitignore +1 -0
- data/examples/java/src/cucumber/demo/.gitignore +1 -0
- data/examples/python/lib/.gitignore +1 -0
- data/examples/ruby2python/lib/.gitignore +1 -0
- data/examples/self_test/.gitignore +1 -0
- data/features/background.feature +0 -3
- data/features/bug_464.feature +16 -0
- data/features/cucumber_cli.feature +4 -6
- data/features/cucumber_cli_diff_disabled.feature +0 -2
- data/features/cucumber_cli_outlines.feature +0 -4
- data/features/drb_server_integration.feature +1 -0
- data/features/exception_in_after_block.feature +0 -2
- data/features/exception_in_after_step_block.feature +0 -2
- data/features/exception_in_before_block.feature +0 -2
- data/features/junit_formatter.feature +0 -1
- data/features/language_help.feature +40 -38
- data/features/listener_debugger_formatter.feature +41 -0
- data/features/post_configuration_hook.feature +1 -1
- data/features/report_called_undefined_steps.feature +0 -1
- data/features/step_definitions/simplest_steps.rb +0 -3
- data/features/support/env.rb +5 -1
- data/features/transform.feature +1 -1
- data/features/usage_and_stepdefs_formatter.feature +1 -3
- data/features/work_in_progress.feature +0 -2
- data/gem_tasks/features.rake +6 -1
- data/gem_tasks/rspec.rake +5 -35
- data/gem_tasks/sdoc.rake +10 -5
- data/lib/autotest/cucumber_mixin.rb +6 -0
- data/lib/cucumber.rb +0 -1
- data/lib/cucumber/ast/step_invocation.rb +3 -0
- data/lib/cucumber/cli/configuration.rb +7 -2
- data/lib/cucumber/cli/options.rb +8 -7
- data/lib/cucumber/core_ext/proc.rb +1 -0
- data/lib/cucumber/formatter/ansicolor.rb +0 -9
- data/lib/cucumber/formatter/console.rb +14 -12
- data/lib/cucumber/formatter/debug.rb +33 -0
- data/lib/cucumber/formatter/pretty.rb +2 -2
- data/lib/cucumber/formatter/rerun.rb +9 -6
- data/lib/cucumber/language_support/language_methods.rb +2 -2
- data/lib/cucumber/languages.yml +37 -1
- data/lib/cucumber/platform.rb +3 -1
- data/lib/cucumber/py_support/py_language.py +1 -1
- data/lib/cucumber/py_support/py_language.rb +2 -2
- data/lib/cucumber/rb_support/rb_language.rb +6 -7
- data/lib/cucumber/rb_support/rb_step_definition.rb +0 -1
- data/lib/cucumber/rb_support/rb_world.rb +1 -2
- data/lib/cucumber/step_match.rb +10 -7
- data/lib/cucumber/step_mother.rb +6 -3
- data/rails_generators/cucumber/cucumber_generator.rb +49 -6
- data/spec/cucumber/cli/options_spec.rb +1 -1
- data/spec/cucumber/formatter/console_spec.rb +20 -0
- data/spec/cucumber/step_match_spec.rb +10 -5
- metadata +258 -43
- data/README.txt +0 -4
- data/config/hoe.rb +0 -84
- data/config/requirements.rb +0 -15
- data/gem_tasks/deployment.rake +0 -11
- data/gem_tasks/gemspec.rake +0 -10
- data/lib/cucumber/language_support/step_definition_methods.rb +0 -23
- data/lib/cucumber/version.rb +0 -10
data/.gitattributes
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
spec/cucumber/treetop_parser/test_dos.feature -crlf
|
data/.gitignore
ADDED
data/History.txt
CHANGED
@@ -1,3 +1,30 @@
|
|
1
|
+
== 0.4.1 2009-10-13
|
2
|
+
|
3
|
+
This is mostly a bugfix release. Some of Cucumber's own features have been fixed so they pass on more platforms,
|
4
|
+
making it easier for people to contribute. The README.txt also describes how to get up and running with the
|
5
|
+
development environment.
|
6
|
+
|
7
|
+
=== Bugfixes
|
8
|
+
* Cucumber's features verified passing on MRI 1.8.6 (OSX), 1.8.7 (OSX), 1.9.1 (OSX/Win) and JRuby 1.4.0RC1 (OSX). (Aslak Hellesøy)
|
9
|
+
* Ensure no errors are raised when limiting with tags which are not in the feature set (#464 Joseph Wilk)
|
10
|
+
* Missing Romanian keywords added for Examples, Scenario Outline and Background (to my best google translate knowledge) (Aslak Hellesøy)
|
11
|
+
* Make rerun and --drb work together again after formatter API changes (#485 Erik Hansson, John Ferlito)
|
12
|
+
|
13
|
+
=== New Features
|
14
|
+
* The Rails cucumber generator will only default to RSpec if installed. And print better help. (Aslak Hellesøy)
|
15
|
+
* Added 'but' variants to Japanese. (Kakutani Shintaro)
|
16
|
+
* README.txt explains people how to run all tests. Install gems with geminstaller. (Aslak Hellesøy)
|
17
|
+
* Added support for Serbian language, both Cyrillic and Latin with usage examples. (Dejan Dimic)
|
18
|
+
* Add new 'debug' formatter for debugging and visualising the calls to listeners. (Matt Wynne)
|
19
|
+
|
20
|
+
=== Changed features
|
21
|
+
* Use http://github.com/aslakhellesoy/wac instead of http://github.com/aslakhellesoy/ansicolor on Windows/JRuby (#456 Aslak Hellesøy)
|
22
|
+
|
23
|
+
=== Internal changes
|
24
|
+
* Ditched Hoe for Jeweler (Aslak Hellesøy)
|
25
|
+
* Added StepMother#invoke(step_name, multiline_argument=nil) - needed by cuke4duke ticket #26 (Aslak Hellesøy)
|
26
|
+
* StepDefinitionMethods is gone.
|
27
|
+
|
1
28
|
== 0.4.0 2009-10-09
|
2
29
|
|
3
30
|
The back to stable release. When we went from 0.3.11 to 0.3.90 we thought we were close to a 0.4.0 release. Then the community
|
data/{License.txt → LICENSE}
RENAMED
File without changes
|
data/Manifest.txt
CHANGED
@@ -1,487 +0,0 @@
|
|
1
|
-
History.txt
|
2
|
-
License.txt
|
3
|
-
Manifest.txt
|
4
|
-
README.txt
|
5
|
-
Rakefile
|
6
|
-
bin/cucumber
|
7
|
-
config/hoe.rb
|
8
|
-
config/requirements.rb
|
9
|
-
cucumber.yml
|
10
|
-
examples/cs/README.textile
|
11
|
-
examples/cs/Rakefile
|
12
|
-
examples/cs/compile.bat
|
13
|
-
examples/cs/features/addition.feature
|
14
|
-
examples/cs/features/step_definitons/calculator_steps.rb
|
15
|
-
examples/cs/src/demo/Calculator.cs
|
16
|
-
examples/dos_line_endings/Rakefile
|
17
|
-
examples/dos_line_endings/features/dos_line_endings.feature
|
18
|
-
examples/i18n/README.textile
|
19
|
-
examples/i18n/Rakefile
|
20
|
-
examples/i18n/ar/Rakefile
|
21
|
-
examples/i18n/ar/features/addition.feature
|
22
|
-
examples/i18n/ar/features/step_definitons/calculator_steps.rb
|
23
|
-
examples/i18n/ar/lib/calculator.rb
|
24
|
-
examples/i18n/bg/Rakefile
|
25
|
-
examples/i18n/bg/features/addition.feature
|
26
|
-
examples/i18n/bg/features/consecutive_calculations.feature
|
27
|
-
examples/i18n/bg/features/division.feature
|
28
|
-
examples/i18n/bg/features/step_definitons/calculator_steps.rb
|
29
|
-
examples/i18n/bg/features/support/env.rb
|
30
|
-
examples/i18n/bg/features/support/world.rb
|
31
|
-
examples/i18n/bg/lib/calculator.rb
|
32
|
-
examples/i18n/cat/Rakefile
|
33
|
-
examples/i18n/cat/features/step_definitons/calculator_steps.rb
|
34
|
-
examples/i18n/cat/features/suma.feature
|
35
|
-
examples/i18n/cat/lib/calculadora.rb
|
36
|
-
examples/i18n/da/Rakefile
|
37
|
-
examples/i18n/da/features/step_definitons/kalkulator_steps.rb
|
38
|
-
examples/i18n/da/features/summering.feature
|
39
|
-
examples/i18n/da/lib/kalkulator.rb
|
40
|
-
examples/i18n/de/Rakefile
|
41
|
-
examples/i18n/de/features/addition.feature
|
42
|
-
examples/i18n/de/features/division.feature
|
43
|
-
examples/i18n/de/features/step_definitons/calculator_steps.rb
|
44
|
-
examples/i18n/de/lib/calculator.rb
|
45
|
-
examples/i18n/en-lol/Rakefile
|
46
|
-
examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb
|
47
|
-
examples/i18n/en-lol/features/stuffing.feature
|
48
|
-
examples/i18n/en-lol/features/support/env.rb
|
49
|
-
examples/i18n/en-lol/lib/basket.rb
|
50
|
-
examples/i18n/en-lol/lib/belly.rb
|
51
|
-
examples/i18n/en/Rakefile
|
52
|
-
examples/i18n/en/features/addition.feature
|
53
|
-
examples/i18n/en/features/division.feature
|
54
|
-
examples/i18n/en/features/step_definitons/calculator_steps.rb
|
55
|
-
examples/i18n/en/lib/calculator.rb
|
56
|
-
examples/i18n/es/Rakefile
|
57
|
-
examples/i18n/es/features/adicion.feature
|
58
|
-
examples/i18n/es/features/step_definitons/calculador_steps.rb
|
59
|
-
examples/i18n/es/lib/calculador.rb
|
60
|
-
examples/i18n/et/Rakefile
|
61
|
-
examples/i18n/et/features/jagamine.feature
|
62
|
-
examples/i18n/et/features/liitmine.feature
|
63
|
-
examples/i18n/et/features/step_definitions/kalkulaator_steps.rb
|
64
|
-
examples/i18n/et/lib/kalkulaator.rb
|
65
|
-
examples/i18n/fi/Rakefile
|
66
|
-
examples/i18n/fi/features/jakolasku.feature
|
67
|
-
examples/i18n/fi/features/step_definitons/laskin_steps.rb
|
68
|
-
examples/i18n/fi/features/yhteenlasku.feature
|
69
|
-
examples/i18n/fi/lib/laskin.rb
|
70
|
-
examples/i18n/fr/Rakefile
|
71
|
-
examples/i18n/fr/features/addition.feature
|
72
|
-
examples/i18n/fr/features/step_definitions/calculatrice_steps.rb
|
73
|
-
examples/i18n/fr/lib/calculatrice.rb
|
74
|
-
examples/i18n/he/Rakefile
|
75
|
-
examples/i18n/he/features/addition.feature
|
76
|
-
examples/i18n/he/features/division.feature
|
77
|
-
examples/i18n/he/features/step_definitons/calculator_steps.rb
|
78
|
-
examples/i18n/he/lib/calculator.rb
|
79
|
-
examples/i18n/hu/Rakefile
|
80
|
-
examples/i18n/hu/features/addition.feature
|
81
|
-
examples/i18n/hu/features/division.feature
|
82
|
-
examples/i18n/hu/features/step_definitons/calculator_steps.rb
|
83
|
-
examples/i18n/hu/lib/calculator.rb
|
84
|
-
examples/i18n/id/Rakefile
|
85
|
-
examples/i18n/id/features/addition.feature
|
86
|
-
examples/i18n/id/features/division.feature
|
87
|
-
examples/i18n/id/features/step_definitons/calculator_steps.rb
|
88
|
-
examples/i18n/id/lib/calculator.rb
|
89
|
-
examples/i18n/it/Rakefile
|
90
|
-
examples/i18n/it/features/somma.feature
|
91
|
-
examples/i18n/it/features/step_definitons/calcolatrice_steps.rb
|
92
|
-
examples/i18n/it/lib/calcolatrice.rb
|
93
|
-
examples/i18n/ja/Rakefile
|
94
|
-
examples/i18n/ja/features/addition.feature
|
95
|
-
examples/i18n/ja/features/division.feature
|
96
|
-
examples/i18n/ja/features/step_definitons/calculator_steps.rb
|
97
|
-
examples/i18n/ja/lib/calculator.rb
|
98
|
-
examples/i18n/ko/Rakefile
|
99
|
-
examples/i18n/ko/features/addition.feature
|
100
|
-
examples/i18n/ko/features/division.feature
|
101
|
-
examples/i18n/ko/features/step_definitons/calculator_steps.rb
|
102
|
-
examples/i18n/ko/lib/calculator.rb
|
103
|
-
examples/i18n/lt/Rakefile
|
104
|
-
examples/i18n/lt/features/addition.feature
|
105
|
-
examples/i18n/lt/features/division.feature
|
106
|
-
examples/i18n/lt/features/step_definitons/calculator_steps.rb
|
107
|
-
examples/i18n/lt/lib/calculator.rb
|
108
|
-
examples/i18n/lv/Rakefile
|
109
|
-
examples/i18n/lv/features/addition.feature
|
110
|
-
examples/i18n/lv/features/division.feature
|
111
|
-
examples/i18n/lv/features/step_definitons/calculator_steps.rb
|
112
|
-
examples/i18n/lv/lib/calculator.rb
|
113
|
-
examples/i18n/no/Rakefile
|
114
|
-
examples/i18n/no/features/step_definitons/kalkulator_steps.rb
|
115
|
-
examples/i18n/no/features/summering.feature
|
116
|
-
examples/i18n/no/features/support/env.rb
|
117
|
-
examples/i18n/no/lib/kalkulator.rb
|
118
|
-
examples/i18n/pl/Rakefile
|
119
|
-
examples/i18n/pl/features/addition.feature
|
120
|
-
examples/i18n/pl/features/division.feature
|
121
|
-
examples/i18n/pl/features/step_definitons/calculator_steps.rb
|
122
|
-
examples/i18n/pl/features/support/env.rb
|
123
|
-
examples/i18n/pl/lib/calculator.rb
|
124
|
-
examples/i18n/pt/Rakefile
|
125
|
-
examples/i18n/pt/features/adicao.feature
|
126
|
-
examples/i18n/pt/features/step_definitions/calculadora_steps.rb
|
127
|
-
examples/i18n/pt/features/support/env.rb
|
128
|
-
examples/i18n/pt/lib/calculadora.rb
|
129
|
-
examples/i18n/ro/Rakefile
|
130
|
-
examples/i18n/ro/features/step_definitons/calculator_steps.rb
|
131
|
-
examples/i18n/ro/features/suma.feature
|
132
|
-
examples/i18n/ro/lib/calculator.rb
|
133
|
-
examples/i18n/ru/Rakefile
|
134
|
-
examples/i18n/ru/features/addition.feature
|
135
|
-
examples/i18n/ru/features/consecutive_calculations.feature
|
136
|
-
examples/i18n/ru/features/division.feature
|
137
|
-
examples/i18n/ru/features/step_definitons/calculator_steps.rb
|
138
|
-
examples/i18n/ru/features/support/env.rb
|
139
|
-
examples/i18n/ru/features/support/world.rb
|
140
|
-
examples/i18n/ru/lib/calculator.rb
|
141
|
-
examples/i18n/se/Rakefile
|
142
|
-
examples/i18n/se/features/step_definitons/kalkulator_steps.rb
|
143
|
-
examples/i18n/se/features/summering.feature
|
144
|
-
examples/i18n/se/lib/kalkulator.rb
|
145
|
-
examples/i18n/sk/Rakefile
|
146
|
-
examples/i18n/sk/features/addition.feature
|
147
|
-
examples/i18n/sk/features/division.feature
|
148
|
-
examples/i18n/sk/features/step_definitons/calculator_steps.rb
|
149
|
-
examples/i18n/sk/lib/calculator.rb
|
150
|
-
examples/i18n/tr/Rakefile
|
151
|
-
examples/i18n/tr/features/bölme.feature
|
152
|
-
examples/i18n/tr/features/step_definitons/hesap_makinesi_adımları.rb
|
153
|
-
examples/i18n/tr/features/toplama.feature
|
154
|
-
examples/i18n/tr/lib/hesap_makinesi.rb
|
155
|
-
examples/i18n/uz/Rakefile
|
156
|
-
examples/i18n/uz/features/addition.feature
|
157
|
-
examples/i18n/uz/features/consecutive_calculations.feature
|
158
|
-
examples/i18n/uz/features/division.feature
|
159
|
-
examples/i18n/uz/features/step_definitons/calculator_steps.rb
|
160
|
-
examples/i18n/uz/features/support/env.rb
|
161
|
-
examples/i18n/uz/features/support/world.rb
|
162
|
-
examples/i18n/uz/lib/calculator.rb
|
163
|
-
examples/i18n/zh-CN/Rakefile
|
164
|
-
examples/i18n/zh-CN/features/addition.feature
|
165
|
-
examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb
|
166
|
-
examples/i18n/zh-CN/lib/calculator.rb
|
167
|
-
examples/i18n/zh-TW/Rakefile
|
168
|
-
examples/i18n/zh-TW/features/addition.feature
|
169
|
-
examples/i18n/zh-TW/features/division.feature
|
170
|
-
examples/i18n/zh-TW/features/step_definitons/calculator_steps.rb
|
171
|
-
examples/i18n/zh-TW/lib/calculator.rb
|
172
|
-
examples/java/README.textile
|
173
|
-
examples/java/build.xml
|
174
|
-
examples/java/features/hello.feature
|
175
|
-
examples/java/features/step_definitons/hello_steps.rb
|
176
|
-
examples/java/features/step_definitons/tree_steps.rb
|
177
|
-
examples/java/features/tree.feature
|
178
|
-
examples/java/src/cucumber/demo/Hello.java
|
179
|
-
examples/junit/features/one_passing_one_failing.feature
|
180
|
-
examples/junit/features/pending.feature
|
181
|
-
examples/junit/features/step_definitions/steps.rb
|
182
|
-
examples/pure_java/README.textile
|
183
|
-
examples/python/features/fibonacci.feature
|
184
|
-
examples/python/features/step_definitions/fib_steps.py
|
185
|
-
examples/python/lib/fib.py
|
186
|
-
examples/ramaze/README.textile
|
187
|
-
examples/ramaze/Rakefile
|
188
|
-
examples/ramaze/app.rb
|
189
|
-
examples/ramaze/features/add.feature
|
190
|
-
examples/ramaze/features/step_definitions/add_steps.rb
|
191
|
-
examples/ramaze/features/support/env.rb
|
192
|
-
examples/ramaze/layout/default.html.erb
|
193
|
-
examples/ramaze/view/index.html.erb
|
194
|
-
examples/ruby2python/features/fibonacci.feature
|
195
|
-
examples/ruby2python/features/step_definitions/fib_steps.rb
|
196
|
-
examples/ruby2python/features/support/env.rb
|
197
|
-
examples/ruby2python/lib/fib.py
|
198
|
-
examples/selenium/Rakefile
|
199
|
-
examples/selenium/features/search.feature
|
200
|
-
examples/selenium/features/step_definitons/search_steps.rb
|
201
|
-
examples/selenium/features/support/env.rb
|
202
|
-
examples/selenium_webrat/Rakefile
|
203
|
-
examples/selenium_webrat/config.ru
|
204
|
-
examples/selenium_webrat/features/search.feature
|
205
|
-
examples/selenium_webrat/features/step_definitons/search_steps.rb
|
206
|
-
examples/selenium_webrat/features/support/env.rb
|
207
|
-
examples/self_test/README.textile
|
208
|
-
examples/self_test/Rakefile
|
209
|
-
examples/self_test/features/background/background_tagged_before_on_outline.feature
|
210
|
-
examples/self_test/features/background/background_with_name.feature
|
211
|
-
examples/self_test/features/background/failing_background.feature
|
212
|
-
examples/self_test/features/background/failing_background_after_success.feature
|
213
|
-
examples/self_test/features/background/multiline_args_background.feature
|
214
|
-
examples/self_test/features/background/passing_background.feature
|
215
|
-
examples/self_test/features/background/pending_background.feature
|
216
|
-
examples/self_test/features/background/scenario_outline_failing_background.feature
|
217
|
-
examples/self_test/features/background/scenario_outline_passing_background.feature
|
218
|
-
examples/self_test/features/call_undefined_step_from_step_def.feature
|
219
|
-
examples/self_test/features/failing_expectation.feature
|
220
|
-
examples/self_test/features/lots_of_undefined.feature
|
221
|
-
examples/self_test/features/multiline_name.feature
|
222
|
-
examples/self_test/features/outline_sample.feature
|
223
|
-
examples/self_test/features/sample.feature
|
224
|
-
examples/self_test/features/search_sample.feature
|
225
|
-
examples/self_test/features/step_definitions/sample_steps.rb
|
226
|
-
examples/self_test/features/support/env.rb
|
227
|
-
examples/self_test/features/tags_sample.feature
|
228
|
-
examples/self_test/features/tons_of_cukes.feature
|
229
|
-
examples/self_test/features/undefined_multiline_args.feature
|
230
|
-
examples/self_test/list-of-features.txt
|
231
|
-
examples/sinatra/README.textile
|
232
|
-
examples/sinatra/Rakefile
|
233
|
-
examples/sinatra/app.rb
|
234
|
-
examples/sinatra/features/add.feature
|
235
|
-
examples/sinatra/features/step_definitions/add_steps.rb
|
236
|
-
examples/sinatra/features/support/env.rb
|
237
|
-
examples/sinatra/views/add.erb
|
238
|
-
examples/sinatra/views/layout.erb
|
239
|
-
examples/steps_library/features/step_definitions/steps_lib1.rb
|
240
|
-
examples/steps_library/features/step_definitions/steps_lib2.rb
|
241
|
-
examples/test_unit/Rakefile
|
242
|
-
examples/test_unit/features/step_definitions/test_unit_steps.rb
|
243
|
-
examples/test_unit/features/test_unit.feature
|
244
|
-
examples/tickets/Rakefile
|
245
|
-
examples/tickets/features/172.feature
|
246
|
-
examples/tickets/features/177/1.feature
|
247
|
-
examples/tickets/features/177/2.feature
|
248
|
-
examples/tickets/features/177/3.feature
|
249
|
-
examples/tickets/features/180.feature
|
250
|
-
examples/tickets/features/229/tagged_hooks.feature
|
251
|
-
examples/tickets/features/229/tagged_hooks.rb
|
252
|
-
examples/tickets/features/236.feature
|
253
|
-
examples/tickets/features/241.feature
|
254
|
-
examples/tickets/features/246.feature
|
255
|
-
examples/tickets/features/248.feature
|
256
|
-
examples/tickets/features/270/back.feature
|
257
|
-
examples/tickets/features/270/back.steps.rb
|
258
|
-
examples/tickets/features/272/hooks.feature
|
259
|
-
examples/tickets/features/272/hooks_steps.rb
|
260
|
-
examples/tickets/features/279/py_string_indent.feature
|
261
|
-
examples/tickets/features/279/py_string_indent.steps.rb
|
262
|
-
examples/tickets/features/279/wrong.feature_
|
263
|
-
examples/tickets/features/301/filter_background_tagged_hooks.feature
|
264
|
-
examples/tickets/features/301/filter_background_tagged_hooks_steps.rb
|
265
|
-
examples/tickets/features/306/only_background.feature
|
266
|
-
examples/tickets/features/lib/eatting_machine.rb
|
267
|
-
examples/tickets/features/lib/pantry.rb
|
268
|
-
examples/tickets/features/scenario_outline.feature
|
269
|
-
examples/tickets/features/step_definitons/246_steps.rb
|
270
|
-
examples/tickets/features/step_definitons/248_steps.rb
|
271
|
-
examples/tickets/features/step_definitons/scenario_outline_steps.rb
|
272
|
-
examples/tickets/features/step_definitons/tickets_steps.rb
|
273
|
-
examples/tickets/features/table_diffing.feature
|
274
|
-
examples/tickets/features/tickets.feature
|
275
|
-
examples/watir/README.textile
|
276
|
-
examples/watir/Rakefile
|
277
|
-
examples/watir/features/search.feature
|
278
|
-
examples/watir/features/step_definitons/search_steps.rb
|
279
|
-
examples/watir/features/support/env.rb
|
280
|
-
examples/webrat/features/search.feature
|
281
|
-
examples/webrat/features/step_definitions/kvasir_steps.rb
|
282
|
-
examples/webrat/features/support/env.rb
|
283
|
-
features/background.feature
|
284
|
-
features/bug_371.feature
|
285
|
-
features/bug_475.feature
|
286
|
-
features/cucumber_cli.feature
|
287
|
-
features/cucumber_cli_diff_disabled.feature
|
288
|
-
features/cucumber_cli_outlines.feature
|
289
|
-
features/custom_formatter.feature
|
290
|
-
features/default_snippets.feature
|
291
|
-
features/drb_server_integration.feature
|
292
|
-
features/exception_in_after_block.feature
|
293
|
-
features/exception_in_after_step_block.feature
|
294
|
-
features/exception_in_before_block.feature
|
295
|
-
features/exclude_files.feature
|
296
|
-
features/expand.feature
|
297
|
-
features/html_formatter.feature
|
298
|
-
features/html_formatter/a.html
|
299
|
-
features/junit_formatter.feature
|
300
|
-
features/language_from_header.feature
|
301
|
-
features/language_help.feature
|
302
|
-
features/multiline_names.feature
|
303
|
-
features/negative_tagged_hooks.feature
|
304
|
-
features/post_configuration_hook.feature
|
305
|
-
features/profiles.feature
|
306
|
-
features/rake_task.feature
|
307
|
-
features/report_called_undefined_steps.feature
|
308
|
-
features/simplest.feature
|
309
|
-
features/snippet.feature
|
310
|
-
features/step_definitions/cucumber_steps.rb
|
311
|
-
features/step_definitions/extra_steps.rb
|
312
|
-
features/step_definitions/simplest_steps.rb
|
313
|
-
features/support/env.rb
|
314
|
-
features/support/env.rb.simplest
|
315
|
-
features/table_diffing.feature
|
316
|
-
features/table_mapping.feature
|
317
|
-
features/transform.feature
|
318
|
-
features/unicode_table.feature
|
319
|
-
features/usage_and_stepdefs_formatter.feature
|
320
|
-
features/work_in_progress.feature
|
321
|
-
gem_tasks/contributors.rake
|
322
|
-
gem_tasks/deployment.rake
|
323
|
-
gem_tasks/environment.rake
|
324
|
-
gem_tasks/features.rake
|
325
|
-
gem_tasks/fix_cr_lf.rake
|
326
|
-
gem_tasks/flog.rake
|
327
|
-
gem_tasks/gemspec.rake
|
328
|
-
gem_tasks/rspec.rake
|
329
|
-
gem_tasks/sass.rake
|
330
|
-
gem_tasks/sdoc.rake
|
331
|
-
lib/README.rdoc
|
332
|
-
lib/autotest/cucumber.rb
|
333
|
-
lib/autotest/cucumber_mixin.rb
|
334
|
-
lib/autotest/cucumber_rails.rb
|
335
|
-
lib/autotest/cucumber_rails_rspec.rb
|
336
|
-
lib/autotest/cucumber_rspec.rb
|
337
|
-
lib/autotest/discover.rb
|
338
|
-
lib/cucumber.rb
|
339
|
-
lib/cucumber/ast.rb
|
340
|
-
lib/cucumber/ast/background.rb
|
341
|
-
lib/cucumber/ast/comment.rb
|
342
|
-
lib/cucumber/ast/examples.rb
|
343
|
-
lib/cucumber/ast/feature.rb
|
344
|
-
lib/cucumber/ast/feature_element.rb
|
345
|
-
lib/cucumber/ast/features.rb
|
346
|
-
lib/cucumber/ast/outline_table.rb
|
347
|
-
lib/cucumber/ast/py_string.rb
|
348
|
-
lib/cucumber/ast/scenario.rb
|
349
|
-
lib/cucumber/ast/scenario_outline.rb
|
350
|
-
lib/cucumber/ast/step.rb
|
351
|
-
lib/cucumber/ast/step_collection.rb
|
352
|
-
lib/cucumber/ast/step_invocation.rb
|
353
|
-
lib/cucumber/ast/table.rb
|
354
|
-
lib/cucumber/ast/tags.rb
|
355
|
-
lib/cucumber/ast/tree_walker.rb
|
356
|
-
lib/cucumber/ast/visitor.rb
|
357
|
-
lib/cucumber/broadcaster.rb
|
358
|
-
lib/cucumber/cli/configuration.rb
|
359
|
-
lib/cucumber/cli/drb_client.rb
|
360
|
-
lib/cucumber/cli/language_help_formatter.rb
|
361
|
-
lib/cucumber/cli/main.rb
|
362
|
-
lib/cucumber/cli/options.rb
|
363
|
-
lib/cucumber/cli/profile_loader.rb
|
364
|
-
lib/cucumber/constantize.rb
|
365
|
-
lib/cucumber/core_ext/instance_exec.rb
|
366
|
-
lib/cucumber/core_ext/proc.rb
|
367
|
-
lib/cucumber/core_ext/string.rb
|
368
|
-
lib/cucumber/feature_file.rb
|
369
|
-
lib/cucumber/filter.rb
|
370
|
-
lib/cucumber/formatter/ansicolor.rb
|
371
|
-
lib/cucumber/formatter/color_io.rb
|
372
|
-
lib/cucumber/formatter/console.rb
|
373
|
-
lib/cucumber/formatter/cucumber.css
|
374
|
-
lib/cucumber/formatter/cucumber.sass
|
375
|
-
lib/cucumber/formatter/duration.rb
|
376
|
-
lib/cucumber/formatter/html.rb
|
377
|
-
lib/cucumber/formatter/junit.rb
|
378
|
-
lib/cucumber/formatter/ordered_xml_markup.rb
|
379
|
-
lib/cucumber/formatter/pdf.rb
|
380
|
-
lib/cucumber/formatter/pretty.rb
|
381
|
-
lib/cucumber/formatter/progress.rb
|
382
|
-
lib/cucumber/formatter/rerun.rb
|
383
|
-
lib/cucumber/formatter/stepdefs.rb
|
384
|
-
lib/cucumber/formatter/steps.rb
|
385
|
-
lib/cucumber/formatter/tag_cloud.rb
|
386
|
-
lib/cucumber/formatter/unicode.rb
|
387
|
-
lib/cucumber/formatter/usage.rb
|
388
|
-
lib/cucumber/language_support.rb
|
389
|
-
lib/cucumber/language_support/language_methods.rb
|
390
|
-
lib/cucumber/language_support/step_definition_methods.rb
|
391
|
-
lib/cucumber/languages.yml
|
392
|
-
lib/cucumber/parser.rb
|
393
|
-
lib/cucumber/parser/feature.rb
|
394
|
-
lib/cucumber/parser/feature.tt
|
395
|
-
lib/cucumber/parser/i18n.tt
|
396
|
-
lib/cucumber/parser/natural_language.rb
|
397
|
-
lib/cucumber/parser/table.rb
|
398
|
-
lib/cucumber/parser/table.tt
|
399
|
-
lib/cucumber/parser/treetop_ext.rb
|
400
|
-
lib/cucumber/platform.rb
|
401
|
-
lib/cucumber/py_support/py_dsl.py
|
402
|
-
lib/cucumber/py_support/py_language.py
|
403
|
-
lib/cucumber/py_support/py_language.rb
|
404
|
-
lib/cucumber/rails/action_controller.rb
|
405
|
-
lib/cucumber/rails/active_record.rb
|
406
|
-
lib/cucumber/rails/rspec.rb
|
407
|
-
lib/cucumber/rails/test_unit.rb
|
408
|
-
lib/cucumber/rails/world.rb
|
409
|
-
lib/cucumber/rake/task.rb
|
410
|
-
lib/cucumber/rb_support/rb_dsl.rb
|
411
|
-
lib/cucumber/rb_support/rb_hook.rb
|
412
|
-
lib/cucumber/rb_support/rb_language.rb
|
413
|
-
lib/cucumber/rb_support/rb_step_definition.rb
|
414
|
-
lib/cucumber/rb_support/rb_transform.rb
|
415
|
-
lib/cucumber/rb_support/rb_world.rb
|
416
|
-
lib/cucumber/rb_support/regexp_argument_matcher.rb
|
417
|
-
lib/cucumber/rspec_neuter.rb
|
418
|
-
lib/cucumber/step_argument.rb
|
419
|
-
lib/cucumber/step_definition_light.rb
|
420
|
-
lib/cucumber/step_match.rb
|
421
|
-
lib/cucumber/step_mother.rb
|
422
|
-
lib/cucumber/version.rb
|
423
|
-
lib/cucumber/webrat/element_locator.rb
|
424
|
-
lib/cucumber/webrat/table_locator.rb
|
425
|
-
rails_generators/cucumber/USAGE
|
426
|
-
rails_generators/cucumber/cucumber_generator.rb
|
427
|
-
rails_generators/cucumber/templates/cucumber
|
428
|
-
rails_generators/cucumber/templates/cucumber.rake
|
429
|
-
rails_generators/cucumber/templates/cucumber_environment.rb
|
430
|
-
rails_generators/cucumber/templates/env.rb
|
431
|
-
rails_generators/cucumber/templates/paths.rb
|
432
|
-
rails_generators/cucumber/templates/spork_env.rb
|
433
|
-
rails_generators/cucumber/templates/version_check.rb
|
434
|
-
rails_generators/cucumber/templates/webrat_steps.rb
|
435
|
-
rails_generators/feature/USAGE
|
436
|
-
rails_generators/feature/feature_generator.rb
|
437
|
-
rails_generators/feature/templates/feature.erb
|
438
|
-
rails_generators/feature/templates/steps.erb
|
439
|
-
spec/cucumber/ast/background_spec.rb
|
440
|
-
spec/cucumber/ast/feature_element_spec.rb
|
441
|
-
spec/cucumber/ast/feature_factory.rb
|
442
|
-
spec/cucumber/ast/feature_spec.rb
|
443
|
-
spec/cucumber/ast/outline_table_spec.rb
|
444
|
-
spec/cucumber/ast/py_string_spec.rb
|
445
|
-
spec/cucumber/ast/scenario_outline_spec.rb
|
446
|
-
spec/cucumber/ast/scenario_spec.rb
|
447
|
-
spec/cucumber/ast/step_collection_spec.rb
|
448
|
-
spec/cucumber/ast/step_spec.rb
|
449
|
-
spec/cucumber/ast/table_spec.rb
|
450
|
-
spec/cucumber/ast/tree_walker_spec.rb
|
451
|
-
spec/cucumber/broadcaster_spec.rb
|
452
|
-
spec/cucumber/cli/configuration_spec.rb
|
453
|
-
spec/cucumber/cli/drb_client_spec.rb
|
454
|
-
spec/cucumber/cli/main_spec.rb
|
455
|
-
spec/cucumber/cli/options_spec.rb
|
456
|
-
spec/cucumber/cli/profile_loader_spec.rb
|
457
|
-
spec/cucumber/core_ext/proc_spec.rb
|
458
|
-
spec/cucumber/formatter/ansicolor_spec.rb
|
459
|
-
spec/cucumber/formatter/color_io_spec.rb
|
460
|
-
spec/cucumber/formatter/duration_spec.rb
|
461
|
-
spec/cucumber/formatter/html_spec.rb
|
462
|
-
spec/cucumber/formatter/junit_spec.rb
|
463
|
-
spec/cucumber/formatter/progress_spec.rb
|
464
|
-
spec/cucumber/formatter/spec_helper.rb
|
465
|
-
spec/cucumber/parser/feature_parser_spec.rb
|
466
|
-
spec/cucumber/parser/table_parser_spec.rb
|
467
|
-
spec/cucumber/rb_support/rb_step_definition_spec.rb
|
468
|
-
spec/cucumber/rb_support/regexp_argument_matcher_spec.rb
|
469
|
-
spec/cucumber/sell_cucumbers.feature
|
470
|
-
spec/cucumber/step_match_spec.rb
|
471
|
-
spec/cucumber/step_mother_spec.rb
|
472
|
-
spec/cucumber/treetop_parser/empty_feature.feature
|
473
|
-
spec/cucumber/treetop_parser/empty_scenario.feature
|
474
|
-
spec/cucumber/treetop_parser/empty_scenario_outline.feature
|
475
|
-
spec/cucumber/treetop_parser/fit_scenario.feature
|
476
|
-
spec/cucumber/treetop_parser/given_scenario.feature
|
477
|
-
spec/cucumber/treetop_parser/invalid_scenario_outlines.feature
|
478
|
-
spec/cucumber/treetop_parser/multiline_steps.feature
|
479
|
-
spec/cucumber/treetop_parser/multiple_tables.feature
|
480
|
-
spec/cucumber/treetop_parser/scenario_outline.feature
|
481
|
-
spec/cucumber/treetop_parser/spaces.feature
|
482
|
-
spec/cucumber/treetop_parser/test_dos.feature
|
483
|
-
spec/cucumber/treetop_parser/with_comments.feature
|
484
|
-
spec/cucumber/treetop_parser/with_tags.feature
|
485
|
-
spec/cucumber/world/pending_spec.rb
|
486
|
-
spec/spec.opts
|
487
|
-
spec/spec_helper.rb
|