aslakhellesoy-cucumber 0.1.99.4 → 0.1.99.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (254) hide show
  1. data/History.txt +4 -1
  2. data/Manifest.txt +2 -10
  3. data/cucumber.yml +1 -0
  4. data/examples/cs/README.textile +1 -0
  5. data/examples/cs/Rakefile +12 -0
  6. data/examples/cs/compile.bat +1 -0
  7. data/examples/cs/features/addition.feature +16 -0
  8. data/examples/cs/features/step_definitons/calculator_steps.rb +19 -0
  9. data/examples/cs/src/demo/Calculator.cs +20 -0
  10. data/examples/dos_line_endings/Rakefile +6 -0
  11. data/examples/dos_line_endings/features/dos_line_endings.feature +9 -0
  12. data/examples/i18n/README.textile +18 -0
  13. data/examples/i18n/Rakefile +32 -0
  14. data/examples/i18n/ar/Rakefile +6 -0
  15. data/examples/i18n/ar/features/addition.feature +17 -0
  16. data/examples/i18n/ar/features/step_definitons/calculator_steps.rb +28 -0
  17. data/examples/i18n/ar/lib/calculator.rb +10 -0
  18. data/examples/i18n/da/Rakefile +6 -0
  19. data/examples/i18n/da/features/step_definitons/kalkulator_steps.rb +24 -0
  20. data/examples/i18n/da/features/summering.feature +17 -0
  21. data/examples/i18n/da/lib/kalkulator.rb +11 -0
  22. data/examples/i18n/de/Rakefile +6 -0
  23. data/examples/i18n/de/features/addition.feature +16 -0
  24. data/examples/i18n/de/features/division.feature +9 -0
  25. data/examples/i18n/de/features/step_definitons/calculator_steps.rb +24 -0
  26. data/examples/i18n/de/lib/calculator.rb +14 -0
  27. data/examples/i18n/en/Rakefile +6 -0
  28. data/examples/i18n/en/features/addition.feature +16 -0
  29. data/examples/i18n/en/features/division.feature +9 -0
  30. data/examples/i18n/en/features/step_definitons/calculator_steps.rb +24 -0
  31. data/examples/i18n/en/lib/calculator.rb +14 -0
  32. data/examples/i18n/es/Rakefile +6 -0
  33. data/examples/i18n/es/features/adicion.feature +17 -0
  34. data/examples/i18n/es/features/step_definitons/calculador_steps.rb +24 -0
  35. data/examples/i18n/es/lib/calculador.rb +11 -0
  36. data/examples/i18n/et/Rakefile +6 -0
  37. data/examples/i18n/et/features/liitmine.feature +17 -0
  38. data/examples/i18n/et/features/step_definitions/kalkulaator_steps.rb +24 -0
  39. data/examples/i18n/et/lib/kalkulaator.rb +10 -0
  40. data/examples/i18n/fi/Rakefile +6 -0
  41. data/examples/i18n/fi/features/jakolasku.feature +9 -0
  42. data/examples/i18n/fi/features/step_definitons/laskin_steps.rb +24 -0
  43. data/examples/i18n/fi/features/yhteenlasku.feature +16 -0
  44. data/examples/i18n/fi/lib/laskin.rb +14 -0
  45. data/examples/i18n/fr/Rakefile +6 -0
  46. data/examples/i18n/fr/features/addition.feature +15 -0
  47. data/examples/i18n/fr/features/step_definitions/calculatrice_steps.rb +27 -0
  48. data/examples/i18n/fr/lib/calculatrice.rb +10 -0
  49. data/examples/i18n/id/Rakefile +6 -0
  50. data/examples/i18n/id/features/addition.feature +16 -0
  51. data/examples/i18n/id/features/division.feature +9 -0
  52. data/examples/i18n/id/features/step_definitons/calculator_steps.rb +24 -0
  53. data/examples/i18n/id/lib/calculator.rb +14 -0
  54. data/examples/i18n/it/Rakefile +6 -0
  55. data/examples/i18n/it/features/somma.feature +10 -0
  56. data/examples/i18n/it/features/step_definitons/calcolatrice_steps.rb +24 -0
  57. data/examples/i18n/it/lib/calcolatrice.rb +11 -0
  58. data/examples/i18n/ja/README.txt +5 -0
  59. data/examples/i18n/ja/Rakefile +6 -0
  60. data/examples/i18n/ja/features/addition.feature +16 -0
  61. data/examples/i18n/ja/features/division.feature +9 -0
  62. data/examples/i18n/ja/features/step_definitons/calculator_steps.rb +24 -0
  63. data/examples/i18n/ja/lib/calculator.rb +14 -0
  64. data/examples/i18n/ko/Rakefile +6 -0
  65. data/examples/i18n/ko/features/addition.feature +16 -0
  66. data/examples/i18n/ko/features/division.feature +10 -0
  67. data/examples/i18n/ko/features/step_definitons/calculator_steps.rb +24 -0
  68. data/examples/i18n/ko/lib/calculator.rb +14 -0
  69. data/examples/i18n/lt/Rakefile +6 -0
  70. data/examples/i18n/lt/features/addition.feature +17 -0
  71. data/examples/i18n/lt/features/division.feature +9 -0
  72. data/examples/i18n/lt/features/step_definitons/calculator_steps.rb +24 -0
  73. data/examples/i18n/lt/lib/calculator.rb +14 -0
  74. data/examples/i18n/no/Rakefile +6 -0
  75. data/examples/i18n/no/features/step_definitons/kalkulator_steps.rb +24 -0
  76. data/examples/i18n/no/features/summering.feature +18 -0
  77. data/examples/i18n/no/lib/kalkulator.rb +11 -0
  78. data/examples/i18n/pt/Rakefile +6 -0
  79. data/examples/i18n/pt/features/adicao.feature +10 -0
  80. data/examples/i18n/pt/features/step_definitions/calculadora_steps.rb +24 -0
  81. data/examples/i18n/pt/lib/calculadora.rb +10 -0
  82. data/examples/i18n/ro/Rakefile +6 -0
  83. data/examples/i18n/ro/features/step_definitons/calculator_steps.rb +24 -0
  84. data/examples/i18n/ro/features/suma.feature +10 -0
  85. data/examples/i18n/ro/lib/calculator.rb +11 -0
  86. data/examples/i18n/se/Rakefile +6 -0
  87. data/examples/i18n/se/features/step_definitons/kalkulator_steps.rb +24 -0
  88. data/examples/i18n/se/features/summering.feature +17 -0
  89. data/examples/i18n/se/lib/kalkulator.rb +11 -0
  90. data/examples/i18n/zh-CN/Rakefile +6 -0
  91. data/examples/i18n/zh-CN/features/addition.feature +17 -0
  92. data/examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb +26 -0
  93. data/examples/i18n/zh-CN/lib/calculator.rb +10 -0
  94. data/examples/java/README.textile +22 -0
  95. data/examples/java/Rakefile +12 -0
  96. data/examples/java/features/hello.feature +11 -0
  97. data/examples/java/features/step_definitons/hello_steps.rb +25 -0
  98. data/examples/java/features/step_definitons/tree_steps.rb +14 -0
  99. data/examples/java/features/tree.feature +9 -0
  100. data/examples/java/src/cucumber/demo/Hello.java +16 -0
  101. data/examples/jbehave/README.textile +17 -0
  102. data/examples/jbehave/features/support/env.rb +7 -0
  103. data/examples/jbehave/features/trading.feature +24 -0
  104. data/examples/jbehave/pom.xml +48 -0
  105. data/examples/jbehave/src/main/java/cukes/jbehave/examples/trader/converters/TraderConverter.java +32 -0
  106. data/examples/jbehave/src/main/java/cukes/jbehave/examples/trader/model/Stock.java +42 -0
  107. data/examples/jbehave/src/main/java/cukes/jbehave/examples/trader/model/Trader.java +29 -0
  108. data/examples/jbehave/src/main/java/cukes/jbehave/examples/trader/persistence/TraderPersister.java +22 -0
  109. data/examples/jbehave/src/main/java/cukes/jbehave/examples/trader/scenarios/TraderSteps.java +65 -0
  110. data/examples/selenium/Rakefile +6 -0
  111. data/examples/selenium/features/search.feature +9 -0
  112. data/examples/selenium/features/step_definitons/stories_steps.rb +40 -0
  113. data/examples/self_test/README.textile +6 -0
  114. data/examples/self_test/features/call_undefined_step_from_step_def.feature +7 -0
  115. data/examples/self_test/features/lots_of_undefined.feature +8 -0
  116. data/examples/self_test/features/outline_sample.feature +15 -0
  117. data/examples/self_test/features/sample.feature +16 -0
  118. data/examples/self_test/features/step_definitions/sample_steps.rb +25 -0
  119. data/examples/test_unit/Rakefile +6 -0
  120. data/examples/test_unit/features/step_definitions/test_unit_steps.rb +26 -0
  121. data/examples/test_unit/features/test_unit.feature +9 -0
  122. data/examples/tickets/Rakefile +11 -0
  123. data/examples/tickets/cucumber.yml +2 -0
  124. data/examples/tickets/features/lib/eatting_machine.rb +18 -0
  125. data/examples/tickets/features/lib/pantry.rb +20 -0
  126. data/examples/tickets/features/scenario_outline.feature +95 -0
  127. data/examples/tickets/features/step_definitons/scenario_outline_steps.rb +42 -0
  128. data/examples/tickets/features/step_definitons/tickets_steps.rb +60 -0
  129. data/examples/tickets/features/tickets.feature +28 -0
  130. data/examples/watir/README.textile +16 -0
  131. data/examples/watir/Rakefile +6 -0
  132. data/examples/watir/features/search.feature +9 -0
  133. data/examples/watir/features/step_definitons/search_steps.rb +24 -0
  134. data/examples/watir/features/support/env.rb +32 -0
  135. data/features/cucumber_cli.feature +331 -0
  136. data/features/cucumber_cli_outlines.feature +90 -0
  137. data/features/report_called_undefined_steps.feature +32 -0
  138. data/features/step_definitions/cucumber_steps.rb +31 -0
  139. data/features/step_definitions/extra_steps.rb +2 -0
  140. data/features/support/env.rb +7 -0
  141. data/gem_tasks/deployment.rake +11 -0
  142. data/gem_tasks/environment.rake +7 -0
  143. data/gem_tasks/features.rake +6 -0
  144. data/gem_tasks/fix_cr_lf.rake +10 -0
  145. data/gem_tasks/flog.rake +4 -0
  146. data/gem_tasks/gemspec.rake +10 -0
  147. data/gem_tasks/rspec.rake +35 -0
  148. data/gem_tasks/yard.rake +8 -0
  149. data/lib/autotest/cucumber.rb +6 -0
  150. data/lib/autotest/cucumber_mixin.rb +124 -0
  151. data/lib/autotest/cucumber_rails.rb +6 -0
  152. data/lib/autotest/cucumber_rails_rspec.rb +6 -0
  153. data/lib/autotest/cucumber_rspec.rb +6 -0
  154. data/lib/autotest/discover.rb +9 -0
  155. data/lib/cucumber.rb +72 -0
  156. data/lib/cucumber/ast.rb +27 -0
  157. data/lib/cucumber/ast/comment.rb +26 -0
  158. data/lib/cucumber/ast/examples.rb +22 -0
  159. data/lib/cucumber/ast/feature.rb +60 -0
  160. data/lib/cucumber/ast/features.rb +39 -0
  161. data/lib/cucumber/ast/filter.rb +22 -0
  162. data/lib/cucumber/ast/outline_table.rb +49 -0
  163. data/lib/cucumber/ast/py_string.rb +52 -0
  164. data/lib/cucumber/ast/scenario.rb +95 -0
  165. data/lib/cucumber/ast/scenario_outline.rb +83 -0
  166. data/lib/cucumber/ast/step.rb +139 -0
  167. data/lib/cucumber/ast/table.rb +214 -0
  168. data/lib/cucumber/ast/tags.rb +33 -0
  169. data/lib/cucumber/ast/visitor.rb +93 -0
  170. data/lib/cucumber/broadcaster.rb +15 -0
  171. data/lib/cucumber/cli.rb +414 -0
  172. data/lib/cucumber/core_ext/exception.rb +53 -0
  173. data/lib/cucumber/core_ext/instance_exec.rb +54 -0
  174. data/lib/cucumber/core_ext/proc.rb +33 -0
  175. data/lib/cucumber/core_ext/string.rb +48 -0
  176. data/lib/cucumber/formatter.rb +1 -0
  177. data/lib/cucumber/formatter/ansicolor.rb +106 -0
  178. data/lib/cucumber/formatter/console.rb +116 -0
  179. data/lib/cucumber/formatter/pretty.rb +158 -0
  180. data/lib/cucumber/formatter/profile.rb +77 -0
  181. data/lib/cucumber/formatter/progress.rb +68 -0
  182. data/lib/cucumber/formatter/rerun.rb +35 -0
  183. data/lib/cucumber/formatters/unicode.rb +2 -0
  184. data/lib/cucumber/jbehave.rb +104 -0
  185. data/lib/cucumber/languages.yml +314 -0
  186. data/lib/cucumber/parser.rb +24 -0
  187. data/lib/cucumber/parser/basic.rb +0 -0
  188. data/lib/cucumber/parser/feature.rb +1351 -0
  189. data/lib/cucumber/parser/feature.tt +160 -0
  190. data/lib/cucumber/parser/i18n.tt +27 -0
  191. data/lib/cucumber/parser/table.rb +396 -0
  192. data/lib/cucumber/parser/table.tt +53 -0
  193. data/lib/cucumber/parser/treetop_ext.rb +67 -0
  194. data/lib/cucumber/platform.rb +18 -0
  195. data/lib/cucumber/rails/rspec.rb +5 -0
  196. data/lib/cucumber/rails/world.rb +73 -0
  197. data/lib/cucumber/rake/task.rb +106 -0
  198. data/lib/cucumber/step_definition.rb +87 -0
  199. data/lib/cucumber/step_mother.rb +164 -0
  200. data/lib/cucumber/version.rb +10 -0
  201. data/pretty.txt +486 -0
  202. data/rails_generators/cucumber/USAGE +11 -0
  203. data/rails_generators/cucumber/cucumber_generator.rb +31 -0
  204. data/rails_generators/cucumber/templates/cucumber +8 -0
  205. data/rails_generators/cucumber/templates/cucumber.rake +7 -0
  206. data/rails_generators/cucumber/templates/env.rb +16 -0
  207. data/rails_generators/cucumber/templates/paths.rb +12 -0
  208. data/rails_generators/cucumber/templates/webrat_steps.rb +99 -0
  209. data/rails_generators/feature/USAGE +12 -0
  210. data/rails_generators/feature/feature_generator.rb +36 -0
  211. data/rails_generators/feature/templates/feature.erb +31 -0
  212. data/rails_generators/feature/templates/steps.erb +24 -0
  213. data/spec/cucumber/ast/feature_factory.rb +54 -0
  214. data/spec/cucumber/ast/feature_spec.rb +60 -0
  215. data/spec/cucumber/ast/py_string_spec.rb +40 -0
  216. data/spec/cucumber/ast/scenario_outline_spec.rb +64 -0
  217. data/spec/cucumber/ast/scenario_spec.rb +82 -0
  218. data/spec/cucumber/ast/step_spec.rb +45 -0
  219. data/spec/cucumber/ast/table_spec.rb +81 -0
  220. data/spec/cucumber/broadcaster_spec.rb +14 -0
  221. data/spec/cucumber/cli_spec.rb +416 -0
  222. data/spec/cucumber/core_ext/proc_spec.rb +37 -0
  223. data/spec/cucumber/core_ext/string_spec.rb +42 -0
  224. data/spec/cucumber/formatter/ansicolor_spec.rb +35 -0
  225. data/spec/cucumber/formatter/html/cucumber.css +37 -0
  226. data/spec/cucumber/formatter/html/cucumber.js +13 -0
  227. data/spec/cucumber/formatter/html/index.html +45 -0
  228. data/spec/cucumber/formatter/html/jquery-1.3.min.js +19 -0
  229. data/spec/cucumber/formatter/html/jquery.uitableedit.js +100 -0
  230. data/spec/cucumber/formatters/profile_formatter_spec.rb +198 -0
  231. data/spec/cucumber/parser/feature_parser_spec.rb +247 -0
  232. data/spec/cucumber/parser/table_parser_spec.rb +48 -0
  233. data/spec/cucumber/rails/stubs/mini_rails.rb +18 -0
  234. data/spec/cucumber/rails/stubs/test_help.rb +1 -0
  235. data/spec/cucumber/rails/world_spec.rb +11 -0
  236. data/spec/cucumber/sell_cucumbers.feature +19 -0
  237. data/spec/cucumber/step_definition_spec.rb +62 -0
  238. data/spec/cucumber/treetop_parser/empty_feature.feature +4 -0
  239. data/spec/cucumber/treetop_parser/empty_scenario.feature +9 -0
  240. data/spec/cucumber/treetop_parser/empty_scenario_outline.feature +3 -0
  241. data/spec/cucumber/treetop_parser/fit_scenario.feature +8 -0
  242. data/spec/cucumber/treetop_parser/given_scenario.feature +9 -0
  243. data/spec/cucumber/treetop_parser/invalid_scenario_outlines.feature +7 -0
  244. data/spec/cucumber/treetop_parser/multiline_steps.feature +17 -0
  245. data/spec/cucumber/treetop_parser/multiple_tables.feature +27 -0
  246. data/spec/cucumber/treetop_parser/scenario_outline.feature +16 -0
  247. data/spec/cucumber/treetop_parser/spaces.feature +12 -0
  248. data/spec/cucumber/treetop_parser/test_dos.feature +25 -0
  249. data/spec/cucumber/treetop_parser/with_comments.feature +10 -0
  250. data/spec/cucumber/treetop_parser/with_tags.feature +18 -0
  251. data/spec/cucumber/world/pending_spec.rb +47 -0
  252. data/spec/spec.opts +2 -0
  253. data/spec/spec_helper.rb +21 -0
  254. metadata +7 -1
@@ -0,0 +1,10 @@
1
+ module Cucumber #:nodoc:
2
+ class VERSION #:nodoc:
3
+ MAJOR = 0
4
+ MINOR = 1
5
+ TINY = 99
6
+ PATCH = 5 # Set to nil for official release
7
+
8
+ STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
9
+ end
10
+ end
@@ -0,0 +1,486 @@
1
+ Feature: Cucumber command line
2
+ In order to write better software
3
+ Developers should be able to execute requirements as tests
4
+
5
+ Scenario: Run single scenario with missing step definition # features/cucumber_cli.feature:5
6
+ When I run cucumber -q features/sample.feature:5 # features/step_definitions/cucumber_steps.rb:5
7
+ Then it should pass with # features/step_definitions/cucumber_steps.rb:15
8
+ """
9
+ @one
10
+ Feature: Sample
11
+
12
+ @two @three
13
+ Scenario: Missing
14
+ Given missing
15
+
16
+ 1 scenario
17
+ 1 undefined step
18
+
19
+ """
20
+
21
+ Scenario: Fail with --strict # features/cucumber_cli.feature:21
22
+ When I run cucumber -q features/sample.feature:5 --strict # features/step_definitions/cucumber_steps.rb:5
23
+ Then it should fail with # features/step_definitions/cucumber_steps.rb:15
24
+ """
25
+ @one
26
+ Feature: Sample
27
+
28
+ @two @three
29
+ Scenario: Missing
30
+ Given missing
31
+
32
+ 1 scenario
33
+ 1 undefined step
34
+
35
+ """
36
+
37
+ Scenario: Specify 2 line numbers where one is a tag # features/cucumber_cli.feature:37
38
+ When I run cucumber -q features/sample.feature:5:14 # features/step_definitions/cucumber_steps.rb:5
39
+ Then it should fail with # features/step_definitions/cucumber_steps.rb:15
40
+ """
41
+ @one
42
+ Feature: Sample
43
+
44
+ @two @three
45
+ Scenario: Missing
46
+ Given missing
47
+
48
+ @four
49
+ Scenario: Failing
50
+ Given failing
51
+ FAIL (RuntimeError)
52
+ ./features/step_definitions/sample_steps.rb:2:in `flunker'
53
+ ./features/step_definitions/sample_steps.rb:9:in `/^failing$/'
54
+ features/sample.feature:16:in `Given failing'
55
+
56
+ 2 scenarios
57
+ 1 failed step
58
+ 1 undefined step
59
+
60
+ """
61
+
62
+ Scenario: Require missing step definition from elsewhere # features/cucumber_cli.feature:62
63
+ When I run cucumber -q -r ../../features/step_definitions/extra_steps.rb features/sample.feature:5 # features/step_definitions/cucumber_steps.rb:5
64
+ Then it should pass with # features/step_definitions/cucumber_steps.rb:15
65
+ """
66
+ @one
67
+ Feature: Sample
68
+
69
+ @two @three
70
+ Scenario: Missing
71
+ Given missing
72
+
73
+ 1 scenario
74
+ 1 passed step
75
+
76
+ """
77
+
78
+ Scenario: Specify the line number of a row # features/cucumber_cli.feature:78
79
+ When I run cucumber -q features/sample.feature:12 # features/step_definitions/cucumber_steps.rb:5
80
+ Then it should pass with # features/step_definitions/cucumber_steps.rb:15
81
+ """
82
+ @one
83
+ Feature: Sample
84
+
85
+ @three
86
+ Scenario: Passing
87
+ Given passing
88
+ | a | b |
89
+ | c | d |
90
+
91
+ 1 scenario
92
+ 1 passed step
93
+
94
+ """
95
+
96
+ Scenario: Run all with progress formatter # features/cucumber_cli.feature:96
97
+ When I run cucumber -q --format progress features/sample.feature # features/step_definitions/cucumber_steps.rb:5
98
+ Then it should fail with # features/step_definitions/cucumber_steps.rb:15
99
+ """
100
+ U.F
101
+
102
+ (::) failed steps (::)
103
+
104
+ FAIL (RuntimeError)
105
+ ./features/step_definitions/sample_steps.rb:2:in `flunker'
106
+ ./features/step_definitions/sample_steps.rb:9:in `/^failing$/'
107
+ features/sample.feature:16:in `Given failing'
108
+
109
+ 3 scenarios
110
+ 1 failed step
111
+ 1 undefined step
112
+ 1 passed step
113
+
114
+ """
115
+
116
+ Scenario: Run Norwegian # features/cucumber_cli.feature:116
117
+ Given I am in i18n/no # features/step_definitions/cucumber_steps.rb:1
118
+ When I run cucumber -q --language no features # features/step_definitions/cucumber_steps.rb:5
119
+ Then it should pass with # features/step_definitions/cucumber_steps.rb:15
120
+ """
121
+ Egenskap: Summering
122
+ For å slippe å gjøre dumme feil
123
+ Som en regnskapsfører
124
+ Vil jeg kunne legge sammen
125
+
126
+ Scenario: to tall
127
+ Gitt at jeg har tastet inn 5
128
+ Og at jeg har tastet inn 7
129
+ Når jeg summerer
130
+ Så skal resultatet være 12
131
+
132
+ @iterasjon3
133
+ Scenario: tre tall
134
+ Gitt at jeg har tastet inn 5
135
+ Og at jeg har tastet inn 7
136
+ Og at jeg har tastet inn 1
137
+ Når jeg summerer
138
+ Så skal resultatet være 13
139
+
140
+ 2 scenarios
141
+ 9 passed steps
142
+
143
+ """
144
+
145
+ Scenario: --dry-run # features/cucumber_cli.feature:145
146
+ When I run cucumber --dry-run --no-snippets features # features/step_definitions/cucumber_steps.rb:5
147
+ Then it should pass with # features/step_definitions/cucumber_steps.rb:15
148
+ """
149
+ Feature: Calling undefined step
150
+
151
+ Scenario: Call directly
152
+ Given a step definition that calls an undefined step
153
+
154
+ Scenario: Call via another
155
+ Given call step "a step definition that calls an undefined step"
156
+
157
+ Feature: Lots of undefined
158
+
159
+ Scenario: Implement me
160
+ Given it snows in Sahara
161
+ Given it's 40 degrees in Norway
162
+ And it's 40 degrees in Norway
163
+ When I stop procrastinating
164
+ And there is world peace
165
+
166
+ Feature: Outline Sample
167
+
168
+ Scenario: I have no steps
169
+
170
+ Scenario Outline: Test state
171
+ Given <state> without a table
172
+ Given <other_state> without a table
173
+
174
+ Examples:
175
+ | state | other_state |
176
+ | missing | passing |
177
+ | passing | passing |
178
+ | failing | passing |
179
+
180
+ @one
181
+ Feature: Sample
182
+
183
+ @two @three
184
+ Scenario: Missing
185
+ Given missing
186
+
187
+ @three
188
+ Scenario: Passing
189
+ Given passing
190
+ | a | b |
191
+ | c | d |
192
+
193
+ @four
194
+ Scenario: Failing
195
+ Given failing
196
+
197
+ 10 scenarios
198
+ 9 skipped steps
199
+ 7 undefined steps
200
+
201
+ """
202
+
203
+ Scenario: Multiple formatters and outputs # features/cucumber_cli.feature:203
204
+ When I run cucumber --format progress --out tmp/progress.txt --format html --out tmp/features.html features # features/step_definitions/cucumber_steps.rb:5
205
+ And examples/self_test/tmp/progress.txt should contain # features/step_definitions/cucumber_steps.rb:25
206
+ """
207
+ P.FP.F
208
+
209
+ Pending Scenarios:
210
+
211
+ 1) Outline Sample (Test state)
212
+ 2) Sample (Missing)
213
+
214
+
215
+ Failed:
216
+
217
+ 1)
218
+ FAIL
219
+ ./features/step_definitions/sample_steps.rb:12:in ` /^failing without a table$/'
220
+ features/outline_sample.feature:9:in `/^failing without a table$/'
221
+
222
+ 2)
223
+ FAIL
224
+ ./features/step_definitions/sample_steps.rb:5:in `Given /^failing$/'
225
+ features/sample.feature:12:in `Given failing'
226
+
227
+ """
228
+ No such file or directory - examples/self_test/tmp/progress.txt (Errno::ENOENT)
229
+ ./features/step_definitions/cucumber_steps.rb:26:in `read'
230
+ ./features/step_definitions/cucumber_steps.rb:26:in `/^(.*) should contain$/'
231
+ features/cucumber_cli.feature:205:in `And examples/self_test/tmp/progress.txt should contain'
232
+ And examples/self_test/tmp/features.html should match # features/step_definitions/cucumber_steps.rb:29
233
+ """
234
+ Given passing
235
+ """
236
+
237
+ Scenario: Run scenario specified by name using --scenario # features/cucumber_cli.feature:233
238
+ When I run cucumber --scenario Passing -q features/sample.feature # features/step_definitions/cucumber_steps.rb:5
239
+ Then it should pass with # features/step_definitions/cucumber_steps.rb:15
240
+ """
241
+ Feature: Sample
242
+ Scenario: Passing
243
+ Given passing
244
+
245
+
246
+ 1 scenario
247
+ 1 passed step
248
+
249
+ """
250
+ expected: "Feature: Sample\n Scenario: Passing\n Given passing\n\n\n1 scenario\n1 passed step\n",
251
+ got: "@one\nFeature: Sample\n\n @two @three\n Scenario: Missing\n Given missing\n\n @three\n Scenario: Passing\n Given passing\n | a | b |\n | c | d |\n\n @four\n Scenario: Failing\n Given failing\n FAIL (RuntimeError)\n ./features/step_definitions/sample_steps.rb:2:in `flunker'\n ./features/step_definitions/sample_steps.rb:9:in `/^failing$/'\n features/sample.feature:16:in `Given failing'\n\n3 scenarios\n1 failed step\n1 undefined step\n1 passed step\n" (using ==)
252
+ Diff:
253
+
254
+
255
+
256
+
257
+ @@ -1,8 +1,26 @@
258
+ +@one
259
+ Feature: Sample
260
+ +
261
+ + @two @three
262
+ + Scenario: Missing
263
+ + Given missing
264
+ +
265
+ + @three
266
+ Scenario: Passing
267
+ Given passing
268
+ + | a | b |
269
+ + | c | d |
270
+
271
+ + @four
272
+ + Scenario: Failing
273
+ + Given failing
274
+ + FAIL (RuntimeError)
275
+ + ./features/step_definitions/sample_steps.rb:2:in `flunker'
276
+ + ./features/step_definitions/sample_steps.rb:9:in `/^failing$/'
277
+ + features/sample.feature:16:in `Given failing'
278
+
279
+ -1 scenario
280
+ +3 scenarios
281
+ +1 failed step
282
+ +1 undefined step
283
+ 1 passed step
284
+ (Spec::Expectations::ExpectationNotMetError)
285
+ ./features/step_definitions/cucumber_steps.rb:17:in `/^it should (fail|pass) with$/'
286
+ features/cucumber_cli.feature:235:in `Then it should pass with'
287
+
288
+ Scenario: Run with a tag that exists on 2 scenarios # features/cucumber_cli.feature:247
289
+ When I run cucumber -q features --tags three # features/step_definitions/cucumber_steps.rb:5
290
+ Then it should pass with # features/step_definitions/cucumber_steps.rb:15
291
+ """
292
+ @one
293
+ Feature: Sample
294
+
295
+ @two @three
296
+ Scenario: Missing
297
+ Given missing
298
+
299
+ @three
300
+ Scenario: Passing
301
+ Given passing
302
+ | a | b |
303
+ | c | d |
304
+
305
+ 2 scenarios
306
+ 1 undefined step
307
+ 1 passed step
308
+
309
+ """
310
+
311
+ Scenario: Run with a tag that exists on 1 feature # features/cucumber_cli.feature:270
312
+ When I run cucumber -q features --tags one # features/step_definitions/cucumber_steps.rb:5
313
+ Then it should fail with # features/step_definitions/cucumber_steps.rb:15
314
+ """
315
+ @one
316
+ Feature: Sample
317
+
318
+ @two @three
319
+ Scenario: Missing
320
+ Given missing
321
+
322
+ @three
323
+ Scenario: Passing
324
+ Given passing
325
+ | a | b |
326
+ | c | d |
327
+
328
+ @four
329
+ Scenario: Failing
330
+ Given failing
331
+ FAIL (RuntimeError)
332
+ ./features/step_definitions/sample_steps.rb:2:in `flunker'
333
+ ./features/step_definitions/sample_steps.rb:9:in `/^failing$/'
334
+ features/sample.feature:16:in `Given failing'
335
+
336
+ 3 scenarios
337
+ 1 failed step
338
+ 1 undefined step
339
+ 1 passed step
340
+
341
+ """
342
+
343
+ Scenario: Reformat files with --autoformat # features/cucumber_cli.feature:302
344
+ When I run cucumber --autoformat tmp/formatted features # features/step_definitions/cucumber_steps.rb:5
345
+ Then examples/self_test/tmp/formatted/features/sample.feature should contain # features/step_definitions/cucumber_steps.rb:25
346
+ """
347
+ @one
348
+ Feature: Sample
349
+
350
+ @two @three
351
+ Scenario: Missing
352
+ Given missing
353
+
354
+ @three
355
+ Scenario: Passing
356
+ Given passing
357
+ | a | b |
358
+ | c | d |
359
+
360
+ @four
361
+ Scenario: Failing
362
+ Given failing
363
+
364
+
365
+ """
366
+ No such file or directory - examples/self_test/tmp/formatted/features/sample.feature (Errno::ENOENT)
367
+ ./features/step_definitions/cucumber_steps.rb:26:in `read'
368
+ ./features/step_definitions/cucumber_steps.rb:26:in `/^(.*) should contain$/'
369
+ features/cucumber_cli.feature:304:in `Then examples/self_test/tmp/formatted/features/sample.feature should contain'
370
+
371
+ Feature: Cucumber command line
372
+ In order to write better software
373
+ Developers should be able to execute requirements as tests
374
+
375
+ Scenario: Run scenario outline steps only # features/cucumber_cli_outlines.feature:5
376
+ When I run cucumber -q features/outline_sample.feature:7 # features/step_definitions/cucumber_steps.rb:5
377
+ Then it should fail with # features/step_definitions/cucumber_steps.rb:15
378
+ """
379
+ Feature: Outline Sample
380
+
381
+ Scenario Outline: Test state
382
+ Given <state> without a table
383
+ Given <other_state> without a table
384
+
385
+ Examples:
386
+ | state | other_state |
387
+ | missing | passing |
388
+ | passing | passing |
389
+ | failing | passing |
390
+ FAIL (RuntimeError)
391
+ ./features/step_definitions/sample_steps.rb:2:in `flunker'
392
+ ./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
393
+ features/outline_sample.feature:12:in `Given failing without a table'
394
+
395
+ 3 scenarios
396
+ 1 failed step
397
+ 2 skipped steps
398
+ 1 undefined step
399
+ 2 passed steps
400
+
401
+ """
402
+
403
+ Scenario: Run single failing scenario outline table row # features/cucumber_cli_outlines.feature:33
404
+ When I run cucumber features/outline_sample.feature:12 # features/step_definitions/cucumber_steps.rb:5
405
+ Then it should fail with # features/step_definitions/cucumber_steps.rb:15
406
+ """
407
+ Feature: Outline Sample
408
+
409
+ Scenario Outline: Test state # features/outline_sample.feature:5
410
+ Given <state> without a table
411
+ Given <other_state> without a table
412
+
413
+ Examples:
414
+ | state | other_state |
415
+ | failing | passing |
416
+ FAIL (RuntimeError)
417
+ ./features/step_definitions/sample_steps.rb:2:in `flunker'
418
+ ./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
419
+ features/outline_sample.feature:12:in `Given failing without a table'
420
+
421
+ 1 scenario
422
+ 1 failed step
423
+ 1 skipped step
424
+
425
+ """
426
+
427
+ Scenario: Run all with progress formatter # features/cucumber_cli_outlines.feature:57
428
+ When I run cucumber -q --format progress features/outline_sample.feature # features/step_definitions/cucumber_steps.rb:5
429
+ Then it should fail with # features/step_definitions/cucumber_steps.rb:15
430
+ """
431
+ UUS..FS
432
+
433
+ (::) undefined scenarios (::)
434
+
435
+ features/outline_sample.feature:3:in `Scenario: I have no steps'
436
+
437
+ (::) failed steps (::)
438
+
439
+ FAIL (RuntimeError)
440
+ ./features/step_definitions/sample_steps.rb:2:in `flunker'
441
+ ./features/step_definitions/sample_steps.rb:16:in `/^failing without a table$/'
442
+ features/outline_sample.feature:12:in `Given failing without a table'
443
+
444
+ 4 scenarios
445
+ 1 failed step
446
+ 2 skipped steps
447
+ 1 undefined step
448
+ 2 passed steps
449
+
450
+ """
451
+
452
+ Feature: Cucumber command line
453
+ In order to find out what step definitions need to be implemented
454
+ Developers should always see what step definition is missing
455
+
456
+ Scenario: Get info at arbitrary levels of nesting # features/report_called_undefined_steps.feature:5
457
+ When I run cucumber features/call_undefined_step_from_step_def.feature # features/step_definitions/cucumber_steps.rb:5
458
+ Then it should pass with # features/step_definitions/cucumber_steps.rb:15
459
+ """
460
+ Feature: Calling undefined step
461
+
462
+ Scenario: Call directly # features/call_undefined_step_from_step_def.feature:3
463
+ Given a step definition that calls an undefined step # features/step_definitions/sample_steps.rb:19
464
+ Undefined step: "this does not exist" (Cucumber::StepMother::Undefined)
465
+ ./features/step_definitions/sample_steps.rb:20:in `/^a step definition that calls an undefined step$/'
466
+
467
+ Scenario: Call via another # features/call_undefined_step_from_step_def.feature:6
468
+ Given call step "a step definition that calls an undefined step" # features/step_definitions/sample_steps.rb:23
469
+ Undefined step: "this does not exist" (Cucumber::StepMother::Undefined)
470
+ ./features/step_definitions/sample_steps.rb:20:in `/^a step definition that calls an undefined step$/'
471
+
472
+ 2 scenarios
473
+ 2 undefined steps
474
+
475
+ You can implement step definitions for missing steps with these snippets:
476
+
477
+ Given /^this does not exist$/ do
478
+ end
479
+
480
+
481
+ """
482
+
483
+ 17 scenarios
484
+ 3 failed steps
485
+ 1 skipped step
486
+ 32 passed steps