cucumber 1.3.20 → 2.0.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (404) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.rspec +1 -1
  4. data/.travis.yml +1 -2
  5. data/CONTRIBUTING.md +9 -0
  6. data/Gemfile +9 -2
  7. data/History.md +26 -17
  8. data/LICENSE +2 -2
  9. data/README.md +4 -4
  10. data/Rakefile +12 -0
  11. data/bin/cucumber +1 -5
  12. data/bin/cuke +60 -0
  13. data/cucumber.gemspec +10 -15
  14. data/cucumber.yml +14 -26
  15. data/examples/i18n/ar/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  16. data/examples/i18n/bg/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  17. data/examples/i18n/ca/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  18. data/examples/i18n/cs/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  19. data/examples/i18n/da/features/{step_definitons → step_definitions}/lommeregner_steps.rb +0 -0
  20. data/examples/i18n/de/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  21. data/examples/{ramaze → i18n/el}/Rakefile +1 -1
  22. data/examples/i18n/el/features/addition.feature +17 -0
  23. data/examples/i18n/el/features/division.feature +10 -0
  24. data/examples/i18n/el/features/step_definitions/calculator_steps.rb +24 -0
  25. data/examples/i18n/el/lib/calculator.rb +14 -0
  26. data/examples/i18n/en/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  27. data/examples/i18n/eo/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  28. data/examples/i18n/es/features/{step_definitons → step_definitions}/calculador_steps.rb +0 -0
  29. data/examples/i18n/fi/features/{step_definitons → step_definitions}/laskin_steps.rb +0 -0
  30. data/examples/i18n/fr/Rakefile +3 -1
  31. data/examples/i18n/fr/features/step_definitions/calculatrice_steps.rb +2 -2
  32. data/examples/i18n/he/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  33. data/examples/i18n/hi/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  34. data/examples/i18n/hu/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  35. data/examples/i18n/id/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  36. data/examples/i18n/it/features/{step_definitons → step_definitions}/calcolatrice_steps.rb +0 -0
  37. data/examples/i18n/ja/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  38. data/examples/i18n/ko/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  39. data/examples/i18n/lt/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  40. data/examples/i18n/lv/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  41. data/examples/i18n/no/features/{step_definitons → step_definitions}/kalkulator_steps.rb +0 -0
  42. data/examples/i18n/pl/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  43. data/examples/i18n/ro/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  44. data/examples/i18n/ru/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  45. data/examples/i18n/sk/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  46. data/examples/i18n/sr-Cyrl/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  47. data/examples/i18n/sr-Latn/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  48. data/examples/i18n/sv/features/{step_definitons → step_definitions}/kalkulator_steps.rb +0 -0
  49. data/examples/i18n/tr/features/{step_definitons → step_definitions}/hesap_makinesi_adimlari.rb +0 -0
  50. data/examples/i18n/uk/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  51. data/examples/i18n/uz/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  52. data/examples/i18n/zh-CN/features/{step_definitons → step_definitions}/calculator_steps.rb +4 -4
  53. data/examples/i18n/zh-TW/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  54. data/{legacy_features → features/docs}/api/list_step_defs_as_json.feature +14 -14
  55. data/{legacy_features → features/docs}/api/run_cli_main_with_existing_runtime.feature +5 -10
  56. data/features/{backtraces.feature → docs/cli/backtraces.feature} +2 -2
  57. data/features/docs/cli/dry_run.feature +25 -0
  58. data/features/docs/cli/exclude_files.feature +19 -0
  59. data/features/docs/cli/execute_with_tag_filter.feature +117 -0
  60. data/features/docs/cli/randomize.feature +46 -0
  61. data/features/docs/cli/require.feature +27 -0
  62. data/features/docs/cli/run_scenarios_matching_name.feature +104 -0
  63. data/features/docs/cli/run_specific_scenarios.feature +113 -0
  64. data/features/docs/cli/showing_differences.feature +43 -0
  65. data/features/docs/cli/specifying_multiple_formatters.feature +44 -0
  66. data/features/docs/cli/strict_mode.feature +41 -0
  67. data/features/{nested_steps.feature → docs/defining_steps/nested_steps.feature} +3 -5
  68. data/features/{nested_steps_i18n.feature → docs/defining_steps/nested_steps_i18n.feature} +0 -2
  69. data/features/{nested_steps_with_second_arg.feature → docs/defining_steps/nested_steps_with_second_arg.feature} +0 -0
  70. data/features/{step_definitions.feature → docs/defining_steps/one_line_step_definitions.feature} +3 -3
  71. data/features/docs/defining_steps/printing_messages.feature +147 -0
  72. data/features/docs/defining_steps/skip_scenario.feature +33 -0
  73. data/features/docs/defining_steps/snippets.feature +41 -0
  74. data/{legacy_features → features/docs/defining_steps}/table_diffing.feature +15 -15
  75. data/features/{transforms.feature → docs/defining_steps/transforms.feature} +2 -2
  76. data/{legacy_features/exception_in_after_block.feature → features/docs/exception_in_after_hook.feature} +25 -26
  77. data/{legacy_features/exception_in_after_step_block.feature → features/docs/exception_in_after_step_hook.feature} +21 -24
  78. data/{legacy_features/exception_in_before_block.feature → features/docs/exception_in_before_hook.feature} +18 -20
  79. data/features/{custom_formatter.feature → docs/extending_cucumber/custom_formatter.feature} +3 -8
  80. data/features/{formatter_callbacks.feature → docs/extending_cucumber/formatter_callbacks.feature} +185 -4
  81. data/{legacy_features/listener_debugger_formatter.feature → features/docs/formatters/debug_formatter.feature} +13 -15
  82. data/features/{formatter_step_file_colon_line.feature → docs/formatters/formatter_step_file_colon_line.feature} +2 -4
  83. data/features/{html_formatter.feature → docs/formatters/html_formatter.feature} +10 -14
  84. data/features/{json_formatter.feature → docs/formatters/json_formatter.feature} +109 -247
  85. data/features/docs/formatters/junit_formatter.feature +275 -0
  86. data/features/{pretty_formatter.feature → docs/formatters/pretty_formatter.feature} +1 -1
  87. data/features/{progress_formatter.feature → docs/formatters/progress_formatter.feature} +1 -1
  88. data/features/docs/formatters/rerun_formatter.feature +135 -0
  89. data/features/docs/formatters/usage_formatter.feature +102 -0
  90. data/features/docs/getting_started.feature +27 -0
  91. data/features/{background.feature → docs/gherkin/background.feature} +149 -91
  92. data/features/{doc_strings.feature → docs/gherkin/doc_strings.feature} +1 -0
  93. data/features/docs/gherkin/expand_option_for_outlines.feature +46 -0
  94. data/features/docs/gherkin/language_from_header.feature +32 -0
  95. data/features/docs/gherkin/outlines.feature +154 -0
  96. data/features/docs/gherkin/unicode_table.feature +32 -0
  97. data/features/docs/gherkin/using_descriptions.feature +88 -0
  98. data/features/docs/gherkin/using_star_notation.feature +37 -0
  99. data/features/{iso-8859-1.feature → docs/iso-8859-1.feature} +0 -0
  100. data/{legacy_features → features/docs}/post_configuration_hook.feature +17 -18
  101. data/{legacy_features → features/docs}/profiles.feature +30 -36
  102. data/{legacy_features → features/docs}/rake_task.feature +30 -41
  103. data/features/{raketask.feature → docs/raketask.feature} +6 -13
  104. data/features/docs/report_called_undefined_steps.feature +57 -0
  105. data/{legacy_features → features/docs}/wire_protocol.feature +36 -31
  106. data/{legacy_features → features/docs}/wire_protocol_erb.feature +5 -6
  107. data/{legacy_features → features/docs}/wire_protocol_table_diffing.feature +14 -12
  108. data/{legacy_features → features/docs}/wire_protocol_tags.feature +6 -7
  109. data/{legacy_features → features/docs}/wire_protocol_timeouts.feature +6 -6
  110. data/{legacy_features → features/docs}/work_in_progress.feature +52 -54
  111. data/{legacy_features → features/docs/writing_support_code}/around_hooks.feature +25 -28
  112. data/features/docs/writing_support_code/before_hook.feature +61 -0
  113. data/features/docs/writing_support_code/hook_order.feature +61 -0
  114. data/features/{load_path.feature → docs/writing_support_code/load_path.feature} +3 -0
  115. data/features/docs/writing_support_code/state.feature +32 -0
  116. data/features/{tagged_hooks.feature → docs/writing_support_code/tagged_hooks.feature} +11 -13
  117. data/features/lib/step_definitions/aruba_steps.rb +22 -0
  118. data/features/lib/step_definitions/cucumber_steps.rb +50 -0
  119. data/features/{step_definitions → lib/step_definitions}/iso-8859-1_steps.rb +3 -15
  120. data/features/lib/step_definitions/json_steps.rb +7 -0
  121. data/features/lib/step_definitions/junit_steps.rb +13 -0
  122. data/features/lib/step_definitions/language_steps.rb +4 -5
  123. data/features/lib/step_definitions/profile_steps.rb +15 -0
  124. data/features/lib/step_definitions/ruby_steps.rb +3 -0
  125. data/{legacy_features → features/lib}/step_definitions/wire_steps.rb +16 -9
  126. data/features/lib/support/env.rb +21 -0
  127. data/{legacy_features → features/lib}/support/fake_wire_server.rb +0 -0
  128. data/features/{support → lib/support}/feature_factory.rb +1 -1
  129. data/features/lib/support/normalise_output.rb +33 -0
  130. data/gem_tasks/cov.rake +5 -0
  131. data/gem_tasks/cucumber.rake +1 -10
  132. data/gem_tasks/rspec.rake +0 -2
  133. data/gem_tasks/yard.rake +4 -1
  134. data/lib/cucumber.rb +1 -3
  135. data/lib/cucumber/cli/configuration.rb +30 -25
  136. data/lib/cucumber/cli/main.rb +13 -25
  137. data/lib/cucumber/cli/options.rb +15 -57
  138. data/lib/cucumber/configuration.rb +4 -0
  139. data/lib/cucumber/constantize.rb +7 -6
  140. data/lib/cucumber/core_ext/instance_exec.rb +7 -38
  141. data/lib/cucumber/core_ext/proc.rb +1 -1
  142. data/lib/cucumber/errors.rb +3 -1
  143. data/lib/cucumber/file_specs.rb +35 -0
  144. data/lib/cucumber/formatter/console.rb +32 -21
  145. data/lib/cucumber/formatter/debug.rb +5 -0
  146. data/lib/cucumber/formatter/gherkin_formatter_adapter.rb +8 -38
  147. data/lib/cucumber/formatter/html.rb +29 -21
  148. data/lib/cucumber/formatter/junit.rb +10 -7
  149. data/lib/cucumber/formatter/pretty.rb +2 -8
  150. data/lib/cucumber/formatter/rerun.rb +2 -3
  151. data/lib/cucumber/formatter/unicode.rb +8 -21
  152. data/lib/cucumber/formatter/usage.rb +65 -2
  153. data/lib/cucumber/language_support/language_methods.rb +1 -1
  154. data/lib/cucumber/mappings.rb +212 -0
  155. data/lib/cucumber/multiline_argument.rb +115 -0
  156. data/lib/cucumber/platform.rb +21 -22
  157. data/lib/cucumber/rake/task.rb +3 -54
  158. data/lib/cucumber/rb_support/rb_language.rb +2 -5
  159. data/lib/cucumber/rb_support/rb_world.rb +14 -19
  160. data/lib/cucumber/rb_support/snippet.rb +60 -19
  161. data/lib/cucumber/reports/legacy_formatter.rb +1279 -0
  162. data/lib/cucumber/runtime.rb +176 -26
  163. data/lib/cucumber/runtime/for_programming_languages.rb +10 -4
  164. data/lib/cucumber/runtime/gated_receiver.rb +21 -0
  165. data/lib/cucumber/runtime/support_code.rb +9 -7
  166. data/lib/cucumber/runtime/tag_limits.rb +15 -0
  167. data/lib/cucumber/runtime/tag_limits/filter.rb +31 -0
  168. data/lib/cucumber/runtime/tag_limits/test_case_index.rb +29 -0
  169. data/lib/cucumber/runtime/tag_limits/verifier.rb +57 -0
  170. data/lib/cucumber/runtime/user_interface.rb +4 -0
  171. data/lib/cucumber/step_match.rb +3 -3
  172. data/lib/cucumber/term/ansicolor.rb +1 -9
  173. data/lib/cucumber/wire_support/wire_language.rb +23 -9
  174. data/lib/cucumber/wire_support/wire_packet.rb +1 -1
  175. data/lib/cucumber/wire_support/wire_protocol/requests.rb +13 -5
  176. data/lib/cucumber/wire_support/wire_step_definition.rb +1 -8
  177. data/spec/cucumber/cli/configuration_spec.rb +151 -150
  178. data/spec/cucumber/cli/main_spec.rb +36 -99
  179. data/spec/cucumber/cli/options_spec.rb +238 -272
  180. data/spec/cucumber/cli/profile_loader_spec.rb +9 -8
  181. data/spec/cucumber/configuration_spec.rb +3 -3
  182. data/spec/cucumber/constantize_spec.rb +2 -1
  183. data/spec/cucumber/core_ext/proc_spec.rb +32 -43
  184. data/spec/cucumber/file_specs_spec.rb +41 -0
  185. data/spec/cucumber/formatter/ansicolor_spec.rb +11 -10
  186. data/spec/cucumber/formatter/debug_spec.rb +569 -0
  187. data/spec/cucumber/formatter/duration_spec.rb +6 -6
  188. data/spec/cucumber/formatter/html_spec.rb +53 -62
  189. data/spec/cucumber/formatter/interceptor_spec.rb +38 -31
  190. data/spec/cucumber/formatter/junit_spec.rb +34 -28
  191. data/spec/cucumber/formatter/pretty_spec.rb +238 -52
  192. data/spec/cucumber/formatter/progress_spec.rb +2 -2
  193. data/spec/cucumber/formatter/spec_helper.rb +23 -17
  194. data/spec/cucumber/rake/forked_spec.rb +13 -22
  195. data/spec/cucumber/rb_support/rb_language_spec.rb +76 -67
  196. data/spec/cucumber/rb_support/rb_step_definition_spec.rb +63 -42
  197. data/spec/cucumber/rb_support/rb_transform_spec.rb +4 -3
  198. data/spec/cucumber/rb_support/regexp_argument_matcher_spec.rb +6 -4
  199. data/spec/cucumber/rb_support/snippet_spec.rb +42 -33
  200. data/spec/cucumber/reports/legacy_formatter_spec.rb +1750 -0
  201. data/spec/cucumber/runtime/for_programming_languages_spec.rb +11 -10
  202. data/spec/cucumber/runtime/gated_receiver_spec.rb +47 -0
  203. data/spec/cucumber/runtime/results_spec.rb +33 -26
  204. data/spec/cucumber/runtime/support_code_spec.rb +29 -29
  205. data/spec/cucumber/runtime/tag_limits/filter_spec.rb +59 -0
  206. data/spec/cucumber/runtime/tag_limits/test_case_index_spec.rb +38 -0
  207. data/spec/cucumber/runtime/tag_limits/verifier_spec.rb +57 -0
  208. data/spec/cucumber/runtime_spec.rb +39 -34
  209. data/spec/cucumber/step_match_spec.rb +30 -20
  210. data/spec/cucumber/wire_support/configuration_spec.rb +8 -5
  211. data/spec/cucumber/wire_support/connection_spec.rb +12 -8
  212. data/spec/cucumber/wire_support/wire_exception_spec.rb +14 -8
  213. data/spec/cucumber/wire_support/wire_language_spec.rb +8 -9
  214. data/spec/cucumber/wire_support/wire_packet_spec.rb +17 -13
  215. data/spec/cucumber/world/pending_spec.rb +36 -36
  216. data/spec/simplecov_setup.rb +18 -0
  217. data/spec/spec_helper.rb +3 -9
  218. metadata +298 -507
  219. data/.gitattributes +0 -1
  220. data/.ruby-version +0 -1
  221. data/examples/python/README.textile +0 -8
  222. data/examples/python/Rakefile +0 -4
  223. data/examples/python/features/fibonacci.feature +0 -19
  224. data/examples/python/features/step_definitions/fib_steps.py +0 -11
  225. data/examples/python/lib/fib.py +0 -7
  226. data/examples/ramaze/README.textile +0 -7
  227. data/examples/ramaze/app.rb +0 -21
  228. data/examples/ramaze/features/add.feature +0 -11
  229. data/examples/ramaze/features/step_definitions/add_steps.rb +0 -15
  230. data/examples/ramaze/features/support/env.rb +0 -32
  231. data/examples/ramaze/layout/default.html.erb +0 -8
  232. data/examples/ramaze/view/index.html.erb +0 -5
  233. data/examples/ruby2python/README.textile +0 -8
  234. data/examples/ruby2python/Rakefile +0 -4
  235. data/examples/ruby2python/features/fibonacci.feature +0 -19
  236. data/examples/ruby2python/features/step_definitions/fib_steps.rb +0 -7
  237. data/examples/ruby2python/features/support/env.rb +0 -21
  238. data/examples/ruby2python/lib/fib.py +0 -7
  239. data/examples/v8/Rakefile +0 -6
  240. data/examples/v8/features/fibonacci.feature +0 -43
  241. data/examples/v8/features/step_definitions/fib_steps.js +0 -49
  242. data/examples/v8/features/support/env.js +0 -14
  243. data/examples/v8/lib/fibonacci.js +0 -19
  244. data/features/.cucumber/stepdefs.json +0 -722
  245. data/features/assertions.feature +0 -73
  246. data/features/autoformat_profile_output.feature +0 -23
  247. data/features/before_hook.feature +0 -43
  248. data/features/bootstrap.feature +0 -26
  249. data/features/drb_server_integration.feature +0 -63
  250. data/features/execute_with_tag_filter.feature +0 -63
  251. data/features/parsing.feature +0 -18
  252. data/features/rerun_formatter.feature +0 -99
  253. data/features/run_specific_scenarios.feature +0 -47
  254. data/features/stats_formatters.feature +0 -73
  255. data/features/step_definitions/cucumber-features/cucumber_ruby_mappings.rb +0 -197
  256. data/features/step_definitions/cucumber_steps.rb +0 -57
  257. data/features/step_definitions/drb_steps.rb +0 -3
  258. data/features/support/env.rb +0 -57
  259. data/fixtures/json/features/background.feature +0 -7
  260. data/fixtures/json/features/embed.feature +0 -4
  261. data/fixtures/json/features/one_passing_one_failing.feature +0 -11
  262. data/fixtures/json/features/step_definitions/steps.rb +0 -32
  263. data/fixtures/json/features/tables.feature +0 -13
  264. data/fixtures/junit/features/one_passing_one_failing.feature +0 -8
  265. data/fixtures/junit/features/pending.feature +0 -7
  266. data/fixtures/junit/features/scenario_outline.feature +0 -9
  267. data/fixtures/junit/features/some_subdirectory/one_passing_one_failing.feature +0 -8
  268. data/fixtures/junit/features/step_definitions/steps.rb +0 -11
  269. data/fixtures/self_test/README.textile +0 -6
  270. data/fixtures/self_test/Rakefile +0 -6
  271. data/fixtures/self_test/features/call_undefined_step_from_step_def.feature +0 -7
  272. data/fixtures/self_test/features/failing_expectation.feature +0 -4
  273. data/fixtures/self_test/features/lots_of_undefined.feature +0 -8
  274. data/fixtures/self_test/features/multiline_name.feature +0 -27
  275. data/fixtures/self_test/features/outline_sample.feature +0 -15
  276. data/fixtures/self_test/features/sample.feature +0 -21
  277. data/fixtures/self_test/features/search_sample.feature +0 -32
  278. data/fixtures/self_test/features/step_definitions/sample_steps.rb +0 -84
  279. data/fixtures/self_test/features/support/bubble_256x256.png +0 -0
  280. data/fixtures/self_test/features/support/env.rb +0 -26
  281. data/fixtures/self_test/features/tags_sample.feature +0 -17
  282. data/fixtures/self_test/features/tons_of_cukes.feature +0 -52
  283. data/fixtures/self_test/features/undefined_multiline_args.feature +0 -12
  284. data/fixtures/self_test/list-of-features.txt +0 -1
  285. data/fixtures/steps_library/features/step_definitions/steps_lib1.rb +0 -8
  286. data/fixtures/steps_library/features/step_definitions/steps_lib2.rb +0 -8
  287. data/fixtures/tickets/Rakefile +0 -20
  288. data/fixtures/tickets/features.html +0 -138
  289. data/fixtures/tickets/features/172.feature +0 -28
  290. data/fixtures/tickets/features/177/1.feature +0 -28
  291. data/fixtures/tickets/features/177/2.feature +0 -20
  292. data/fixtures/tickets/features/177/3.feature +0 -18
  293. data/fixtures/tickets/features/180.feature +0 -7
  294. data/fixtures/tickets/features/229/tagged_hooks.feature +0 -8
  295. data/fixtures/tickets/features/229/tagged_hooks.rb +0 -14
  296. data/fixtures/tickets/features/236.feature +0 -13
  297. data/fixtures/tickets/features/241.feature +0 -12
  298. data/fixtures/tickets/features/246.feature +0 -4
  299. data/fixtures/tickets/features/248.feature +0 -11
  300. data/fixtures/tickets/features/270/back.feature +0 -14
  301. data/fixtures/tickets/features/270/back.steps.rb +0 -14
  302. data/fixtures/tickets/features/272/hooks.feature +0 -26
  303. data/fixtures/tickets/features/272/hooks_steps.rb +0 -53
  304. data/fixtures/tickets/features/279/py_string_indent.feature +0 -25
  305. data/fixtures/tickets/features/279/py_string_indent.steps.rb +0 -12
  306. data/fixtures/tickets/features/279/wrong.feature_ +0 -11
  307. data/fixtures/tickets/features/301/filter_background_tagged_hooks.feature +0 -6
  308. data/fixtures/tickets/features/301/filter_background_tagged_hooks_steps.rb +0 -12
  309. data/fixtures/tickets/features/306/only_background.feature +0 -4
  310. data/fixtures/tickets/features/around_timeout.feature +0 -6
  311. data/fixtures/tickets/features/gherkin_67.feature +0 -12
  312. data/fixtures/tickets/features/gherkin_68.feature +0 -4
  313. data/fixtures/tickets/features/half_manual.feature +0 -11
  314. data/fixtures/tickets/features/lib/eatting_machine.rb +0 -18
  315. data/fixtures/tickets/features/lib/pantry.rb +0 -20
  316. data/fixtures/tickets/features/scenario_outline.feature +0 -95
  317. data/fixtures/tickets/features/step_definitons/246_steps.rb +0 -3
  318. data/fixtures/tickets/features/step_definitons/248_steps.rb +0 -15
  319. data/fixtures/tickets/features/step_definitons/around_timeout_steps.rb +0 -9
  320. data/fixtures/tickets/features/step_definitons/half_manual_steps.rb +0 -11
  321. data/fixtures/tickets/features/step_definitons/scenario_outline_steps.rb +0 -42
  322. data/fixtures/tickets/features/step_definitons/tickets_steps.rb +0 -88
  323. data/fixtures/tickets/features/table_diffing.feature +0 -13
  324. data/fixtures/tickets/features/tickets.feature +0 -28
  325. data/legacy_features/README.md +0 -14
  326. data/legacy_features/announce.feature +0 -152
  327. data/legacy_features/bug_371.feature +0 -32
  328. data/legacy_features/bug_464.feature +0 -16
  329. data/legacy_features/bug_475.feature +0 -42
  330. data/legacy_features/bug_585_tab_indentation.feature +0 -22
  331. data/legacy_features/bug_600.feature +0 -73
  332. data/legacy_features/cucumber_cli.feature +0 -584
  333. data/legacy_features/cucumber_cli_outlines.feature +0 -117
  334. data/legacy_features/default_snippets.feature +0 -43
  335. data/legacy_features/diffing.feature +0 -25
  336. data/legacy_features/drb_server_integration.feature +0 -174
  337. data/legacy_features/exclude_files.feature +0 -20
  338. data/legacy_features/expand.feature +0 -60
  339. data/legacy_features/junit_formatter.feature +0 -214
  340. data/legacy_features/language_from_header.feature +0 -30
  341. data/legacy_features/multiline_names.feature +0 -44
  342. data/legacy_features/report_called_undefined_steps.feature +0 -35
  343. data/legacy_features/rerun_formatter.feature +0 -52
  344. data/legacy_features/simplest.feature +0 -11
  345. data/legacy_features/snippet.feature +0 -23
  346. data/legacy_features/snippets_when_using_star_keyword.feature +0 -38
  347. data/legacy_features/step_definitions/cucumber_steps.rb +0 -179
  348. data/legacy_features/step_definitions/extra_steps.rb +0 -2
  349. data/legacy_features/step_definitions/simplest_steps.rb +0 -3
  350. data/legacy_features/support/env.rb +0 -161
  351. data/legacy_features/support/env.rb.simplest +0 -7
  352. data/legacy_features/table_mapping.feature +0 -34
  353. data/legacy_features/transform.feature +0 -245
  354. data/legacy_features/unicode_table.feature +0 -35
  355. data/lib/README.rdoc +0 -12
  356. data/lib/cucumber/ast.rb +0 -30
  357. data/lib/cucumber/ast/background.rb +0 -116
  358. data/lib/cucumber/ast/comment.rb +0 -31
  359. data/lib/cucumber/ast/doc_string.rb +0 -61
  360. data/lib/cucumber/ast/empty_background.rb +0 -33
  361. data/lib/cucumber/ast/examples.rb +0 -49
  362. data/lib/cucumber/ast/feature.rb +0 -99
  363. data/lib/cucumber/ast/features.rb +0 -38
  364. data/lib/cucumber/ast/has_steps.rb +0 -74
  365. data/lib/cucumber/ast/location.rb +0 -41
  366. data/lib/cucumber/ast/multiline_argument.rb +0 -30
  367. data/lib/cucumber/ast/names.rb +0 -13
  368. data/lib/cucumber/ast/outline_table.rb +0 -194
  369. data/lib/cucumber/ast/scenario.rb +0 -103
  370. data/lib/cucumber/ast/scenario_outline.rb +0 -146
  371. data/lib/cucumber/ast/step.rb +0 -122
  372. data/lib/cucumber/ast/step_collection.rb +0 -92
  373. data/lib/cucumber/ast/step_invocation.rb +0 -196
  374. data/lib/cucumber/ast/table.rb +0 -738
  375. data/lib/cucumber/ast/tags.rb +0 -28
  376. data/lib/cucumber/ast/tree_walker.rb +0 -191
  377. data/lib/cucumber/ast/visitor.rb +0 -11
  378. data/lib/cucumber/broadcaster.rb +0 -13
  379. data/lib/cucumber/cli/drb_client.rb +0 -43
  380. data/lib/cucumber/feature_file.rb +0 -101
  381. data/lib/cucumber/formatter/ordered_xml_markup.rb +0 -24
  382. data/lib/cucumber/js_support/js_dsl.js +0 -57
  383. data/lib/cucumber/js_support/js_language.rb +0 -185
  384. data/lib/cucumber/js_support/js_snippets.rb +0 -27
  385. data/lib/cucumber/parser.rb +0 -2
  386. data/lib/cucumber/parser/gherkin_builder.rb +0 -284
  387. data/lib/cucumber/py_support/py_dsl.py +0 -10
  388. data/lib/cucumber/py_support/py_language.py +0 -10
  389. data/lib/cucumber/py_support/py_language.rb +0 -80
  390. data/lib/cucumber/step_mother.rb +0 -10
  391. data/spec/cucumber/ast/background_spec.rb +0 -122
  392. data/spec/cucumber/ast/doc_string_spec.rb +0 -40
  393. data/spec/cucumber/ast/feature_factory.rb +0 -72
  394. data/spec/cucumber/ast/feature_spec.rb +0 -63
  395. data/spec/cucumber/ast/features_spec.rb +0 -51
  396. data/spec/cucumber/ast/outline_table_spec.rb +0 -21
  397. data/spec/cucumber/ast/scenario_outline_spec.rb +0 -74
  398. data/spec/cucumber/ast/step_spec.rb +0 -68
  399. data/spec/cucumber/ast/table_spec.rb +0 -594
  400. data/spec/cucumber/ast/tree_walker_spec.rb +0 -19
  401. data/spec/cucumber/broadcaster_spec.rb +0 -15
  402. data/spec/cucumber/cli/drb_client_spec.rb +0 -76
  403. data/spec/cucumber/rake/rcov_spec.rb +0 -71
  404. data/spec/cucumber/wire_support/wire_step_definition_spec.rb +0 -20
@@ -1,138 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta content="text/html;charset=utf-8"/><title>Cucumber</title><style type="text/css">
2
-
3
- .cucumber {
4
- font-family: "Lucida Grande", Helvetica, sans-serif;
5
- font-size: 0.7em;
6
- background: white;
7
- padding: 1em;
8
- }
9
- .cucumber h1, .cucumber h2, .cucumber h3, .cucumber h4, .cucumber ol, .cucumber li, .cucumber pre, .cucumber p {
10
- font-size: 1em;
11
- padding: 0px;
12
- margin: 0px;
13
- }
14
- .cucumber div.feature {
15
- border: 1px solid;
16
- padding: 2px;
17
- margin: 4px;
18
- }
19
- .cucumber div.feature div.background, .cucumber div.feature div.scenario, .cucumber div.feature p {
20
- padding: 0em 0em 0em 1em;
21
- }
22
- .cucumber div.feature div.background div.examples, .cucumber div.feature div.scenario div.examples, .cucumber div.feature p div.examples {
23
- padding: 0em 0em 0em 1em;
24
- }
25
- .cucumber .stats {
26
- margin: 2em;
27
- }
28
- .cucumber .summary ul.features li {
29
- display: inline;
30
- }
31
- .cucumber .backtrace {
32
- margin-top: 0;
33
- margin-bottom: 0;
34
- margin-left: 1em;
35
- }
36
- .cucumber a {
37
- text-decoration: none;
38
- color: inherit;
39
- }
40
- .cucumber a:hover {
41
- text-decoration: underline;
42
- }
43
- .cucumber a:visited {
44
- font-weight: normal;
45
- }
46
- .cucumber a div.examples {
47
- border: 1px solid;
48
- padding: 2px;
49
- margin: 4px;
50
- }
51
- .cucumber table {
52
- border-collapse: collapse;
53
- }
54
- .cucumber table td, .cucumber table th {
55
- font-size: 0.7em;
56
- border: 1px solid #AAAAAA;
57
- }
58
- .cucumber table td.failed {
59
- background: #FFC0CB;
60
- color: #8B0000;
61
- }
62
- .cucumber table td.passed {
63
- background: #98FB98;
64
- color: #001111;
65
- }
66
- .cucumber table td.skipped {
67
- background: #e0ffff;
68
- color: #001111;
69
- }
70
- .cucumber table td.pending {
71
- background: #FFFFE0;
72
- color: #111100;
73
- }
74
- .cucumber table td.undefined {
75
- background: #FFFFE0;
76
- color: #111100;
77
- }
78
- .cucumber ol {
79
- list-style: none;
80
- }
81
- .cucumber ol li {
82
- margin: 0em 0em 0em 1em;
83
- padding: 0em 0em 0em 0.2em;
84
- }
85
- .cucumber ol li span.param {
86
- font-weight: bold;
87
- }
88
- .cucumber ol li.failed {
89
- border-left: 5px solid #ff0000;
90
- border-bottom: 1px solid #ff0000;
91
- background: #ffc0cb;
92
- color: #8b0000;
93
- }
94
- .cucumber ol li.failed span.param {
95
- background: !failed_dark;
96
- }
97
- .cucumber ol li.passed {
98
- border-left: 5px solid #00ff00;
99
- border-bottom: 1px solid #00ff00;
100
- background: #98fb98;
101
- color: #001111;
102
- }
103
- .cucumber ol li.passed span.param {
104
- background: #00ff00;
105
- }
106
- .cucumber ol li.skipped {
107
- border-left: 5px solid #00ffff;
108
- border-bottom: 1px solid #00ffff;
109
- background: #e0ffff;
110
- color: #001111;
111
- }
112
- .cucumber ol li.skipped span.param {
113
- background: #00ffff;
114
- }
115
- .cucumber ol li.pending {
116
- border-left: 5px solid #ff8000;
117
- border-bottom: 1px solid #ff8000;
118
- background: #ffff00;
119
- color: #2a1b0a;
120
- }
121
- .cucumber ol li.pending span.param {
122
- background: #ff8000;
123
- }
124
- .cucumber ol li.undefined {
125
- border-left: 5px solid #ff8000;
126
- border-bottom: 1px solid #ff8000;
127
- background: #ffff00;
128
- color: #2a1b0a;
129
- }
130
- .cucumber ol li.undefined span.param {
131
- background: #ff8000;
132
- }
133
- </style></head><body><div class="cucumber"><div class="feature"><h2><span class="val">Feature: Login</span></h2><p class="narrative">To ensure the safety of the application<br/>A regular user of the system<br/>Must authenticate before using the app<br/></p><div class="scenario outline"><h3><span class="keyword">Scenario Outline:</span> <span class="val">Failed Login</span></h3><ol><li class="step skipped" id="features_172_feature_8"><div><span class="keyword">Given</span> <span class="step val">the user &quot;known_user&quot;</span></div></li><li class="step skipped" id="features_172_feature_10"><div><span class="keyword">When</span> <span class="step val">I go to the main page</span></div></li><li class="step skipped" id="features_172_feature_11"><div><span class="keyword">Then</span> <span class="step val">I should see the login form</span></div></li><li class="step skipped" id="features_172_feature_13"><div><span class="keyword">When</span> <span class="step val">I fill in &quot;login&quot; with &quot;&lt;login&gt;&quot;</span></div></li><li class="step skipped" id="features_172_feature_14"><div><span class="keyword">And</span> <span class="step val">I fill in &quot;password&quot; with &quot;&lt;password&gt;&quot;</span></div></li><li class="step skipped" id="features_172_feature_15"><div><span class="keyword">And</span> <span class="step val">I press &quot;Log In&quot;</span></div></li><li class="step skipped" id="features_172_feature_16"><div><span class="keyword">Then</span> <span class="step val">the login request should fail</span></div></li><li class="step skipped" id="features_172_feature_17"><div><span class="keyword">And</span> <span class="step val">I should see the error message &quot;Login or Password incorrect&quot;</span></div></li></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val"></span></h4><table><tr id="row_20"><th class="val skipped_param" id="row_20_0">login</th><th class="val skipped_param" id="row_20_1">password</th></tr><tr id="row_21"><td class="val undefined" id="row_21_0"></td><td class="val undefined" id="row_21_1"></td></tr><tr id="row_22"><td class="val undefined" id="row_22_0">unknown_user</td><td class="val undefined" id="row_22_1"></td></tr><tr id="row_23"><td class="val undefined" id="row_23_0">known_user</td><td class="val undefined" id="row_23_1"></td></tr><tr id="row_24"><td class="val undefined" id="row_24_0"></td><td class="val undefined" id="row_24_1">wrong_password</td></tr><tr id="row_25"><td class="val undefined" id="row_25_0"></td><td class="val undefined" id="row_25_1">known_userpass</td></tr><tr id="row_26"><td class="val undefined" id="row_26_0">unknown_user</td><td class="val undefined" id="row_26_1">wrong_password</td></tr><tr id="row_27"><td class="val undefined" id="row_27_0">unknown_user</td><td class="val undefined" id="row_27_1">known_userpass</td></tr><tr id="row_28"><td class="val undefined" id="row_28_0">known_user</td><td class="val undefined" id="row_28_1">wrong_password</td></tr></table></div></div></div><div class="feature"><h2><span class="val">Users want to know that nobody can masquerade as them. We want to extend trust</span></h2><p class="narrative">only to visitors who present the appropriate credentials. Everyone wants this<br/>identity verification to be as secure and convenient as possible.<br/><br/>Feature: Logging in<br/>As an anonymous user with an account<br/>I want to log in to my account<br/>So that I can be myself<br/></p><div class="scenario"><pre class="comment">#<br/># Log in: get form<br/>#<br/></pre><h3><span class="keyword">Scenario:</span> <span class="val">Anonymous user can get a login form.</span></h3><ol><li class="step undefined" id="features_177_1_feature_14"><div><span class="keyword">Given</span> <span class="step val">I am logged out</span></div></li><li class="step undefined" id="features_177_1_feature_15"><div><span class="keyword">When</span> <span class="step val">I go to &quot;/login&quot;</span></div></li><li class="step undefined" id="features_177_1_feature_16"><div><span class="keyword">Then</span> <span class="step val">I should be at the &quot;sessions/new&quot; page</span></div></li></ol></div><div class="scenario"><pre class="comment">#<br/># Log in successfully, but don't remember me<br/>#<br/></pre><h3><span class="keyword">Scenario:</span> <span class="val">Anonymous user can log in</span></h3><ol><li class="step undefined" id="features_177_1_feature_22"><div><span class="keyword">Given</span> <span class="step val">an &quot;activated&quot; user named &quot;reggie&quot; exists</span></div></li><li class="step undefined" id="features_177_1_feature_23"><div><span class="keyword">And</span> <span class="step val">I am logged out</span></div></li><li class="step undefined" id="features_177_1_feature_24"><div><span class="keyword">When</span> <span class="step val">I go to &quot;/login&quot;</span></div></li><li class="step undefined" id="features_177_1_feature_25"><div><span class="keyword">And</span> <span class="step val">I fill in &quot;Login&quot; with &quot;reggie&quot;</span></div></li><li class="step undefined" id="features_177_1_feature_26"><div><span class="keyword">And</span> <span class="step val">I fill in &quot;Password&quot; with &quot;password&quot;</span></div></li><li class="step undefined" id="features_177_1_feature_27"><div><span class="keyword">And</span> <span class="step val">I press &quot;Log in&quot;</span></div></li><li class="step undefined" id="features_177_1_feature_28"><div><span class="keyword">Then</span> <span class="step val">I should be at the &quot;dashboard/index&quot; page</span></div></li></ol></div></div><div class="feature"><h2><span class="val">Visitors may create an account, but for those who are not already in the </span></h2><p class="narrative">system an someone must activate the account for them before it can be used.<br/><br/>Feature: Activating an account<br/>As a registered, but not yet activated, user<br/>I want to be able to activate my account<br/>So that I can log in to the site<br/></p><div class="scenario"><h3><span class="keyword">Scenario:</span> <span class="val">Not-yet-activated user can activate her account</span></h3><ol><li class="step undefined" id="features_177_2_feature_10"><div><span class="keyword">Given</span> <span class="step val">a registered user named 'Reggie' # need to rewrite</span></div></li></ol></div></div><div class="feature"><h2><span class="val">Feature: Matt's example with a comment before a step</span></h2><p class="narrative"></p><div class="scenario"><h3><span class="keyword">Scenario:</span> <span class="val">Upload an image for an artist and create a concert in the process</span></h3><ol><li class="step undefined" id="features_177_3_feature_4"><div><span class="keyword">Given</span> <span class="step val">I am logged in to my account</span></div></li><li class="step undefined" id="features_177_3_feature_5"><div><span class="keyword">And</span> <span class="step val">there is one Artist named &quot;Pixies&quot;</span></div></li><li class="step undefined" id="features_177_3_feature_6"><div><span class="keyword">And</span> <span class="step val">there is one Venue</span></div></li><li class="step undefined" id="features_177_3_feature_7"><div><span class="keyword">When</span> <span class="step val">I visit the page for the Artist</span></div></li><li class="step undefined" id="features_177_3_feature_8"><div><span class="keyword">And</span> <span class="step val">I follow &quot;add a photo&quot;</span></div></li><li class="step undefined" id="features_177_3_feature_9"><div><span class="keyword">And</span> <span class="step val">I upload an Image</span></div></li><li class="step undefined" id="features_177_3_feature_11"><div><span class="keyword">And</span> <span class="step val">I press &quot;Search Pixies concerts&quot;</span></div></li><li class="step undefined" id="features_177_3_feature_12"><div><span class="keyword">And</span> <span class="step val">I follow &quot;Add a new Concert&quot;</span></div></li><li class="step undefined" id="features_177_3_feature_13"><div><span class="keyword">And</span> <span class="step val">I fill in new Concert information</span></div></li><li class="step undefined" id="features_177_3_feature_14"><div><span class="keyword">And</span> <span class="step val">I press &quot;Preview&quot;</span></div></li><li class="step undefined" id="features_177_3_feature_15"><div><span class="keyword">And</span> <span class="step val">I press &quot;Add concert&quot;</span></div></li><li class="step undefined" id="features_177_3_feature_17"><div><span class="keyword">And</span> <span class="step val">I press &quot;Submit&quot;</span></div></li><li class="step undefined" id="features_177_3_feature_18"><div><span class="keyword">Then</span> <span class="step val">my Concert should exist with 1 Image</span></div></li></ol></div></div><div class="feature"><h2><span class="val">Feature: Cucumber command line</span></h2><p class="narrative">In order to write better software<br/>Developers should be able to execute requirements as tests<br/></p><div class="scenario"><h3><span class="keyword">Scenario:</span> <span class="val">Pending Scenario at the end of a file with whitespace after it
134
- </span></h3><ol></ol></div></div><div class="feature"><h2><span class="val">Feature: Tagged hooks</span></h2><p class="narrative">In order to provide more flexible setups<br/>I should be able to specify exactly<br/>where hooks are executed<br/></p><div class="scenario"><span class="tag">@i_am_so_special</span><h3><span class="keyword">Scenario:</span> <span class="val">Yes I am</span></h3><ol><li class="step passed" id="features_229_tagged_hooks_feature_8"><div><span class="keyword">When</span> <span class="step val">special me goes to town</span></div></li></ol></div></div><div class="feature"><h2><span class="val">Feature: Unsubstituted argument placeholder</span></h2><p class="narrative"></p><div class="scenario outline"><h3><span class="keyword">Scenario Outline:</span> <span class="val">See Annual Leave Details (as Management &amp; Human Resource)</span></h3><ol><li class="step skipped" id="features_236_feature_4"><div><span class="keyword">Given</span> <span class="step val">the following users exist in the system</span></div><table><tr id="row_5"><td class="val" id="row_5_0">name</td><td class="val" id="row_5_1">email</td><td class="val" id="row_5_2">role_assignments</td><td class="val" id="row_5_3">group_memberships</td></tr><tr id="row_6"><td class="val" id="row_6_0">Jane</td><td class="val" id="row_6_1">jane@fmail.com</td><td class="val" id="row_6_2">&lt;role&gt;</td><td class="val" id="row_6_3">Sales (manager)</td></tr><tr id="row_7"><td class="val" id="row_7_0">Max</td><td class="val" id="row_7_1">max@fmail.com</td><td class="val" id="row_7_2"></td><td class="val" id="row_7_3">Sales (member)</td></tr><tr id="row_8"><td class="val" id="row_8_0">Carol</td><td class="val" id="row_8_1">carol@fmail.com</td><td class="val" id="row_8_2"></td><td class="val" id="row_8_3">Sales (member)</td></tr><tr id="row_9"><td class="val" id="row_9_0">Cat</td><td class="val" id="row_9_1">cat@fmail.com</td><td class="val" id="row_9_2"></td><td class="val" id="row_9_3"></td></tr></table></li></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val"></span></h4><table><tr id="row_12"><th class="val skipped_param" id="row_12_0">role</th></tr><tr id="row_13"><td class="val passed" id="row_13_0">HUMAN RESOURCE</td></tr></table></div></div></div><div class="feature"><h2><span class="val">Users want to use cucumber, so tests are necessary to verify</span></h2><p class="narrative">it is all working as expected<br/><br/>Feature: Using the Console Formatter<br/>In order to verify this error<br/>I want to run this feature using the progress format<br/>So that it can be fixed<br/></p><div class="scenario"><h3><span class="keyword">Scenario:</span> <span class="val">A normal feature</span></h3><ol><li class="step pending" id="features_241_feature_10"><div><span class="keyword">Given</span> <span class="step val">I have a pending step</span></div><pre class="pending">TODO (Cucumber::Pending)
135
- ./features/step_definitons/tickets_steps.rb:57:in `/^I have a pending step$/'
136
- features/241.feature:10:in `Given I have a pending step'</pre></li><li class="step skipped" id="features_241_feature_11"><div><span class="keyword">When</span> <span class="step val">I run this feature with the progress format</span></div></li><li class="step skipped" id="features_241_feature_12"><div><span class="keyword">Then</span> <span class="step val">I should get a no method error for 'backtrace_line'</span></div></li></ol></div></div><div class="feature"><h2><span class="val">Feature: https://rspec.lighthouseapp.com/projects/16211/tickets/246-distorted-console-output-for-slightly-complicated-step-regexp-match</span></h2><p class="narrative"></p><div class="scenario"><h3><span class="keyword">Scenario:</span> <span class="val">See "No Record(s) Found" for Zero Existing</span></h3><ol><li class="step passed" id="features_246_feature_4"><div><span class="keyword">Given</span> <span class="step val">no <span class="param">public holiday</span> exists in the system</span></div></li></ol></div></div><div class="feature"><h2><span class="val">Feature: pending method causes failure in Scenario Outlines</span></h2><p class="narrative"></p><div class="scenario outline"><h3><span class="keyword">Scenario Outline:</span> <span class="val">blah</span></h3><ol><li class="step skipped" id="features_248_feature_4"><div><span class="keyword">Given</span> <span class="step val">this is pending until we fix it</span></div></li><li class="step skipped" id="features_248_feature_5"><div><span class="keyword">Given</span> <span class="step val">context with &lt;Stuff&gt;</span></div></li><li class="step skipped" id="features_248_feature_6"><div><span class="keyword">When</span> <span class="step val">action</span></div></li><li class="step skipped" id="features_248_feature_7"><div><span class="keyword">Then</span> <span class="step val">outcome with &lt;Blah&gt;</span></div></li></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val"></span></h4><table><tr id="row_10"><th class="val skipped_param" id="row_10_0">Stuff</th><th class="val skipped_param" id="row_10_1">Blah</th></tr><tr id="row_11"><td class="val skipped" id="row_11_0">Cheese</td><td class="val skipped" id="row_11_1">Pepper Jack</td></tr><tr><td class="failed" colspan="2"><pre>TODO (Cucumber::Pending)
137
- ./features/step_definitons/248_steps.rb:2:in `/^this is pending until we fix it$/'
138
- features/248.feature:4:in `Given this is pending until we fix it'</pre></td></tr></table></div></div></div><div class="feature"><h2><span class="val">Feature: Background</span></h2><p class="narrative">In for background to work properly<br/>As a user<br/>I want it to run transactionally and only once when I call an individual scenario<br/></p><div class="background"><h3><span class="keyword">Background:</span> <span class="val"></span></h3><ol><li class="step passed" id="features_270_back_feature_7"><div><span class="keyword">Given</span> <span class="step val">plop</span></div></li></ol></div><div class="scenario"><h3><span class="keyword">Scenario:</span> <span class="val">Barping</span></h3><ol><li class="step passed" id="features_270_back_feature_10"><div><span class="keyword">When</span> <span class="step val">I barp</span></div></li></ol></div><div class="scenario"><h3><span class="keyword">Scenario:</span> <span class="val">Wibbling</span></h3><ol><li class="step passed" id="features_270_back_feature_14"><div><span class="keyword">When</span> <span class="step val">I wibble</span></div></li></ol></div></div><div class="feature"><h2><span class="val">Feature: pystring indentaion testcase</span></h2><p class="narrative"></p><div class="scenario"><h3><span class="keyword">Scenario:</span> <span class="val">example of correct indentation</span></h3><ol><li class="step passed" id="features_279_doc_string_indent_feature_4"><div><span class="keyword">Given</span> <span class="step val">multiline string</span></div><pre class="val"> I'm a cucumber and I'm ok&#x000A;I sleep all night and test all day</pre></li><li class="step passed" id="features_279_doc_string_indent_feature_9"><div><span class="keyword">Then</span> <span class="step val">string is</span></div><pre class="val"> I'm a cucumber and I'm ok&#x000A;I sleep all night and test all day</pre></li></ol></div><div class="scenario"><h3><span class="keyword">Scenario:</span> <span class="val">example of wrong indentation</span></h3><ol><li class="step passed" id="features_279_doc_string_indent_feature_16"><div><span class="keyword">Given</span> <span class="step val">I am in <span class="param">tickets/features/279</span></span></div></li><li class="step passed" id="features_279_doc_string_indent_feature_17"><div><span class="keyword">When</span> <span class="step val">I run cucumber <span class="param">-q wrong.feature_</span></span></div></li><li class="step passed" id="features_279_doc_string_indent_feature_18"><div><span class="keyword">Then</span> <span class="step val">it should <span class="param">fail</span> with</span></div><pre class="val"></pre></li><li class="step passed" id="features_279_doc_string_indent_feature_22"><div><span class="keyword">And</span> <span class="step val">STDERR should match</span></div><pre class="val">wrong.feature_:8:10: Parse error</pre></li></ol></div></div><div class="feature"><h2><span class="val">Feature https://rspec.lighthouseapp.com/projects/16211/tickets/301</span></h2><p class="narrative"></p><div class="background"><h3><span class="keyword">Background:</span> <span class="val">A background</span></h3><ol><li class="step passed" id="features_301_filter_background_tagged_hooks_feature_3"><div><span class="keyword">Given</span> <span class="step val">whatever</span></div></li></ol></div><div class="scenario"><h3><span class="keyword">Scenario:</span> <span class="val">VB is not cool</span></h3><ol><li class="step passed" id="features_301_filter_background_tagged_hooks_feature_6"><div><span class="keyword">Then</span> <span class="step val">VB should not be cool</span></div></li></ol></div></div><div class="feature"><h2><span class="val">Feature: woo yeah</span></h2><p class="narrative"></p><div class="background"><h3><span class="keyword">Background:</span> <span class="val"></span></h3><ol><li class="step undefined" id="features_306_only_background_feature_4"><div><span class="keyword">Given</span> <span class="step val">passing step without a table</span></div></li></ol></div></div><div class="feature"><h2><span class="val">Feature: Outlines</span></h2><p class="narrative">In order to re-use scenario table values<br/>As a citizen of Cucumbia<br/>I want to explicitly mark the parameters in a scenario outline<br/></p><div class="scenario outline"><h3><span class="keyword">Scenario Outline:</span> <span class="val">controlling order</span></h3><ol><li class="step skipped" id="features_scenario_outline_feature_7"><div><span class="keyword">Given</span> <span class="step val">there are &lt;start&gt; cucumbers</span></div></li><li class="step skipped" id="features_scenario_outline_feature_8"><div><span class="keyword">When</span> <span class="step val">I eat &lt;eat&gt; cucumbers</span></div></li><li class="step skipped" id="features_scenario_outline_feature_9"><div><span class="keyword">Then</span> <span class="step val">I should have &lt;left&gt; cucumbers</span></div></li></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val"></span></h4><table><tr id="row_12"><th class="val skipped_param" id="row_12_0">left</th><th class="val skipped_param" id="row_12_1">start</th><th class="val skipped_param" id="row_12_2">eat</th></tr><tr id="row_13"><td class="val passed" id="row_13_0">7</td><td class="val passed" id="row_13_1">12</td><td class="val passed" id="row_13_2">5</td></tr><tr id="row_14"><td class="val passed" id="row_14_0">15</td><td class="val passed" id="row_14_1">20</td><td class="val passed" id="row_14_2">5</td></tr></table></div></div><div class="scenario outline"><h3><span class="keyword">Scenario Outline:</span> <span class="val">reusing place holder</span></h3><ol><li class="step skipped" id="features_scenario_outline_feature_17"><div><span class="keyword">Given</span> <span class="step val">there are &lt;start&gt; cucumbers</span></div></li><li class="step skipped" id="features_scenario_outline_feature_18"><div><span class="keyword">When</span> <span class="step val">I eat &lt;eat&gt; cucumbers</span></div></li><li class="step skipped" id="features_scenario_outline_feature_19"><div><span class="keyword">Then</span> <span class="step val">I should have &lt;left&gt; cucumbers</span></div></li><li class="step skipped" id="features_scenario_outline_feature_20"><div><span class="keyword">And</span> <span class="step val">I should have &lt;eat&gt; cucumbers in my belly</span></div></li></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val">Lots of cukes</span></h4><table><tr id="row_23"><th class="val skipped_param" id="row_23_0">start</th><th class="val skipped_param" id="row_23_1">eat</th><th class="val skipped_param" id="row_23_2">left</th></tr><tr id="row_24"><td class="val passed" id="row_24_0">12</td><td class="val passed" id="row_24_1">5</td><td class="val passed" id="row_24_2">7</td></tr><tr id="row_25"><td class="val passed" id="row_25_0">20</td><td class="val passed" id="row_25_1">5</td><td class="val passed" id="row_25_2">15</td></tr></table></div><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val">Ridiculous amounts of cukes</span></h4><table><tr id="row_28"><th class="val skipped_param" id="row_28_0">start</th><th class="val skipped_param" id="row_28_1">eat</th><th class="val skipped_param" id="row_28_2">left</th></tr><tr id="row_29"><td class="val passed" id="row_29_0">120</td><td class="val passed" id="row_29_1">50</td><td class="val passed" id="row_29_2">70</td></tr><tr id="row_30"><td class="val passed" id="row_30_0">200</td><td class="val passed" id="row_30_1">50</td><td class="val passed" id="row_30_2">150</td></tr></table></div></div><div class="scenario outline"><h3><span class="keyword">Scenario Outline:</span> <span class="val">no placeholders</span></h3><ol><li class="step skipped" id="features_scenario_outline_feature_33"><div><span class="keyword">Given</span> <span class="step val">there are 12 cucumbers</span></div></li><li class="step skipped" id="features_scenario_outline_feature_34"><div><span class="keyword">When</span> <span class="step val">I eat 5 cucumbers</span></div></li><li class="step skipped" id="features_scenario_outline_feature_35"><div><span class="keyword">Then</span> <span class="step val">I should have 7 cucumbers</span></div></li></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val"></span></h4><table><tr id="row_38"><th class="val skipped_param" id="row_38_0">start</th><th class="val skipped_param" id="row_38_1">eat</th><th class="val skipped_param" id="row_38_2">left</th></tr><tr id="row_39"><td class="val" id="row_39_0">12</td><td class="val" id="row_39_1">5</td><td class="val" id="row_39_2">7</td></tr><tr id="row_40"><td class="val" id="row_40_0">20</td><td class="val" id="row_40_1">5</td><td class="val" id="row_40_2">15</td></tr></table></div></div><div class="scenario outline"><h3><span class="keyword">Scenario Outline:</span> <span class="val">using '&lt;' and '&gt;' not as placeholder</span></h3><ol><li class="step skipped" id="features_scenario_outline_feature_43"><div><span class="keyword">Given</span> <span class="step val">the belly space is &lt; 12 and &gt; 6</span></div></li><li class="step skipped" id="features_scenario_outline_feature_44"><div><span class="keyword">And</span> <span class="step val">there are &lt;start&gt; cucumbers</span></div></li><li class="step skipped" id="features_scenario_outline_feature_45"><div><span class="keyword">When</span> <span class="step val">I eat &lt;eat&gt; cucumbers</span></div></li><li class="step skipped" id="features_scenario_outline_feature_46"><div><span class="keyword">Then</span> <span class="step val">I should have &lt;left&gt; cucumbers</span></div></li></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val"></span></h4><table><tr id="row_49"><th class="val skipped_param" id="row_49_0">start</th><th class="val skipped_param" id="row_49_1">eat</th><th class="val skipped_param" id="row_49_2">left</th></tr><tr id="row_50"><td class="val passed" id="row_50_0">12</td><td class="val passed" id="row_50_1">5</td><td class="val passed" id="row_50_2">7</td></tr><tr id="row_51"><td class="val passed" id="row_51_0">20</td><td class="val passed" id="row_51_1">5</td><td class="val passed" id="row_51_2">15</td></tr></table></div></div><div class="scenario outline"><h3><span class="keyword">Scenario Outline:</span> <span class="val">with step tables</span></h3><ol><li class="step skipped" id="features_scenario_outline_feature_54"><div><span class="keyword">Given</span> <span class="step val">I have the following fruits in my pantry</span></div><table><tr id="row_55"><td class="val" id="row_55_0">name</td><td class="val" id="row_55_1">quantity</td></tr><tr id="row_56"><td class="val" id="row_56_0">cucumbers</td><td class="val" id="row_56_1">10</td></tr><tr id="row_57"><td class="val" id="row_57_0">strawberrys</td><td class="val" id="row_57_1">5</td></tr><tr id="row_58"><td class="val" id="row_58_0">apricots</td><td class="val" id="row_58_1">7</td></tr></table></li><li class="step skipped" id="features_scenario_outline_feature_60"><div><span class="keyword">When</span> <span class="step val">I eat &lt;number&gt; &lt;fruits&gt; from the pantry</span></div></li><li class="step skipped" id="features_scenario_outline_feature_61"><div><span class="keyword">Then</span> <span class="step val">I should have &lt;left&gt; &lt;fruits&gt; in the pantry</span></div></li></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val"></span></h4><table><tr id="row_64"><th class="val skipped_param" id="row_64_0">number</th><th class="val skipped_param" id="row_64_1">fruits</th><th class="val skipped_param" id="row_64_2">left</th></tr><tr id="row_65"><td class="val passed" id="row_65_0">2</td><td class="val passed" id="row_65_1">cucumbers</td><td class="val passed" id="row_65_2">8</td></tr><tr id="row_66"><td class="val passed" id="row_66_0">4</td><td class="val passed" id="row_66_1">strawberrys</td><td class="val passed" id="row_66_2">1</td></tr><tr id="row_67"><td class="val passed" id="row_67_0">2</td><td class="val passed" id="row_67_1">apricots</td><td class="val passed" id="row_67_2">5</td></tr></table></div></div><div class="scenario outline"><h3><span class="keyword">Scenario Outline:</span> <span class="val">placeholder in a multiline string</span></h3><ol><li class="step skipped" id="features_scenario_outline_feature_70"><div><span class="keyword">Given</span> <span class="step val">my shopping list</span></div><pre class="val"> Must buy some <fruits></pre></li><li class="step skipped" id="features_scenario_outline_feature_74"><div><span class="keyword">Then</span> <span class="step val">my shopping list should equal</span></div><pre class="val"> Must buy some cucumbers</pre></li></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val"></span></h4><table><tr id="row_80"><th class="val skipped_param" id="row_80_0">fruits</th></tr><tr id="row_81"><td class="val passed" id="row_81_0">cucumbers</td></tr></table></div></div><div class="scenario outline"><h3><span class="keyword">Scenario Outline:</span> <span class="val">placeholder in step table</span></h3><ol><li class="step skipped" id="features_scenario_outline_feature_84"><div><span class="keyword">Given</span> <span class="step val">I have the following fruits in my pantry</span></div><table><tr id="row_85"><td class="val" id="row_85_0">name</td><td class="val" id="row_85_1">quantity</td></tr><tr id="row_86"><td class="val" id="row_86_0">cucumbers</td><td class="val" id="row_86_1">&lt;quant_cukes&gt;</td></tr><tr id="row_87"><td class="val" id="row_87_0">strawberrys</td><td class="val" id="row_87_1">&lt;quant_straw&gt;</td></tr></table></li><li class="step skipped" id="features_scenario_outline_feature_89"><div><span class="keyword">When</span> <span class="step val">I eat &lt;number&gt; &lt;fruits&gt; from the pantry</span></div></li><li class="step skipped" id="features_scenario_outline_feature_90"><div><span class="keyword">Then</span> <span class="step val">I should have &lt;left&gt; &lt;fruits&gt; in the pantry</span></div></li></ol><div class="examples"><h4><span class="keyword">Examples:</span> <span class="val"></span></h4><table><tr id="row_93"><th class="val skipped_param" id="row_93_0">quant_cukes</th><th class="val skipped_param" id="row_93_1">quant_straw</th><th class="val skipped_param" id="row_93_2">number</th><th class="val skipped_param" id="row_93_3">fruits</th><th class="val skipped_param" id="row_93_4">left</th></tr><tr id="row_94"><td class="val passed" id="row_94_0">10</td><td class="val passed" id="row_94_1">5</td><td class="val passed" id="row_94_2">2</td><td class="val passed" id="row_94_3">cucumbers</td><td class="val passed" id="row_94_4">8</td></tr><tr id="row_95"><td class="val passed" id="row_95_0">5</td><td class="val passed" id="row_95_1">5</td><td class="val passed" id="row_95_2">4</td><td class="val passed" id="row_95_3">strawberrys</td><td class="val passed" id="row_95_4">1</td></tr></table></div></div></div><div class="feature"><h2><span class="val">Feature: Cucumber</span></h2><p class="narrative">In order to have a happy user base<br/>As a Cucumber user<br/>I don't want no stinkin bugs<br/></p><div class="scenario"><h3><span class="keyword">Scenario:</span> <span class="val">RSpec be_*</span></h3><ol><li class="step passed" id="features_tickets_feature_7"><div><span class="keyword">Given</span> <span class="step val">be_empty</span></div></li></ol></div><div class="scenario"><h3><span class="keyword">Scenario:</span> <span class="val">Call step from step</span></h3><ol><li class="step passed" id="features_tickets_feature_10"><div><span class="keyword">Given</span> <span class="step val">nested step is called</span></div></li><li class="step passed" id="features_tickets_feature_11"><div><span class="keyword">Then</span> <span class="step val">nested step should be executed</span></div></li></ol></div><div class="scenario"><h3><span class="keyword">Scenario:</span> <span class="val">Call step from step using text table</span></h3><ol><li class="step passed" id="features_tickets_feature_14"><div><span class="keyword">Given</span> <span class="step val">nested step is called using text table</span></div></li><li class="step passed" id="features_tickets_feature_15"><div><span class="keyword">Then</span> <span class="step val">nested step should be executed</span></div></li></ol></div><div class="scenario"><h3><span class="keyword">Scenario:</span> <span class="val">Reading a table</span></h3><ol><li class="step passed" id="features_tickets_feature_18"><div><span class="keyword">Given</span> <span class="step val">the following table</span></div><table><tr id="row_19"><td class="val" id="row_19_0">born</td><td class="val" id="row_19_1">working</td></tr><tr id="row_20"><td class="val" id="row_20_0">Oslo</td><td class="val" id="row_20_1">London</td></tr></table></li><li class="step passed" id="features_tickets_feature_21"><div><span class="keyword">Then</span> <span class="step val">I should be <span class="param">working</span> in <span class="param">London</span></span></div></li><li class="step passed" id="features_tickets_feature_22"><div><span class="keyword">And</span> <span class="step val">I should be <span class="param">born</span> in <span class="param">Oslo</span></span></div></li><li class="step passed" id="features_tickets_feature_23"><div><span class="keyword">And</span> <span class="step val">I should see a multiline string like</span></div><pre class="val">A string&#x000A;that spans&#x000A;several lines</pre></li></ol></div></div><div class="summary">43 scenarios (12 undefined, 2 pending, 29 passed)</div><div class="summary">173 steps (5 skipped, 89 undefined, 2 pending, 77 passed)</div><div class="duration">0m0.701s</div></div></body></html>
@@ -1,28 +0,0 @@
1
- Feature: Login
2
- To ensure the safety of the application
3
- A regular user of the system
4
- Must authenticate before using the app
5
-
6
-
7
- Scenario Outline: Failed Login
8
- Given the user "known_user"
9
-
10
- When I go to the main page
11
- Then I should see the login form
12
-
13
- When I fill in "login" with "<login>"
14
- And I fill in "password" with "<password>"
15
- And I press "Log In"
16
- Then the login request should fail
17
- And I should see the error message "Login or Password incorrect"
18
-
19
- Examples:
20
- | login | password |
21
- | | |
22
- | unknown_user | |
23
- | known_user | |
24
- | | wrong_password |
25
- | | known_userpass |
26
- | unknown_user | wrong_password |
27
- | unknown_user | known_userpass |
28
- | known_user | wrong_password |
@@ -1,28 +0,0 @@
1
- # Users want to know that nobody can masquerade as them. We want to extend trust
2
- # only to visitors who present the appropriate credentials. Everyone wants this
3
- # identity verification to be as secure and convenient as possible.
4
- Feature: Logging in
5
- As an anonymous user with an account
6
- I want to log in to my account
7
- So that I can be myself
8
-
9
- #
10
- # Log in: get form
11
- #
12
- Scenario: Anonymous user can get a login form.
13
- Given I am logged out
14
- When I go to "/login"
15
- Then I should be at the "sessions/new" page
16
-
17
- #
18
- # Log in successfully, but don't remember me
19
- #
20
- Scenario: Anonymous user can log in
21
- Given an "activated" user named "reggie" exists
22
- And I am logged out
23
- When I go to "/login"
24
- And I fill in "Login" with "reggie"
25
- And I fill in "Password" with "password"
26
- And I press "Log in"
27
- Then I should be at the "dashboard/index" page
28
-
@@ -1,20 +0,0 @@
1
- # Visitors may create an account, but for those who are not already in the
2
- # system an someone must activate the account for them before it can be used.
3
- Feature: Activating an account
4
- As a registered, but not yet activated, user
5
- I want to be able to activate my account
6
- So that I can log in to the site
7
-
8
- Scenario: Not-yet-activated user can activate her account
9
- Given a registered user named 'Reggie' # need to rewrite
10
- # And the user has activation_code: 'activate_me', activated_at: nil!
11
- # And we try hard to remember the user's updated_at, and created_at
12
- # When she goes to /activate/activate_me
13
- # Then she should be redirected to 'login'
14
- # When she follows that redirect!
15
- # Then she should see a notice message 'Signup complete!'
16
- # And a user with login: 'reggie' should exist
17
- # And the user should have login: 'reggie', and email: 'registered@example.com'
18
- # And the user's activation_code should be nil
19
- # And the user's activated_at should not be nil
20
- # And she should not be logged in
@@ -1,18 +0,0 @@
1
- Feature: Matt's example with a comment before a step
2
-
3
- Scenario: Upload an image for an artist and create a concert in the process
4
- Given I am logged in to my account
5
- And there is one Artist named "Pixies"
6
- And there is one Venue
7
- When I visit the page for the Artist
8
- And I follow "add a photo"
9
- And I upload an Image
10
- # Search on select concert page
11
- And I press "Search Pixies concerts"
12
- And I follow "Add a new Concert"
13
- And I fill in new Concert information
14
- And I press "Preview"
15
- And I press "Add concert"
16
- # No artists appear in this photo
17
- And I press "Submit"
18
- Then my Concert should exist with 1 Image
@@ -1,7 +0,0 @@
1
- Feature: Cucumber command line
2
- In order to write better software
3
- Developers should be able to execute requirements as tests
4
-
5
-
6
- Scenario: Pending Scenario at the end of a file with whitespace after it
7
-
@@ -1,8 +0,0 @@
1
- Feature: Tagged hooks
2
- In order to provide more flexible setups
3
- I should be able to specify exactly
4
- where hooks are executed
5
-
6
- @i_am_so_special
7
- Scenario: Yes I am
8
- When special me goes to town
@@ -1,14 +0,0 @@
1
- begin require 'rspec/expectations'; rescue LoadError; require 'spec/expectations'; end
2
-
3
- Before('@i_am_so_special') do
4
- @something_special = 10
5
- end
6
-
7
- After('@i_am_so_special') do
8
- @something_special.should == 20
9
- end
10
-
11
- When /special me goes to town/ do
12
- @something_special.should == 10
13
- @something_special = 20
14
- end
@@ -1,13 +0,0 @@
1
- Feature: Unsubstituted argument placeholder
2
-
3
- Scenario Outline: See Annual Leave Details (as Management & Human Resource)
4
- Given the following users exist in the system
5
- | name | email | role_assignments | group_memberships |
6
- | Jane | jane@fmail.com | <role> | Sales (manager) |
7
- | Max | max@fmail.com | | Sales (member) |
8
- | Carol | carol@fmail.com | | Sales (member) |
9
- | Cat | cat@fmail.com | | |
10
-
11
- Examples:
12
- | role |
13
- | HUMAN RESOURCE |
@@ -1,12 +0,0 @@
1
- # Users want to use cucumber, so tests are necessary to verify
2
- # it is all working as expected
3
- Feature: Using the Console Formatter
4
- In order to verify this error
5
- I want to run this feature using the progress format
6
- So that it can be fixed
7
-
8
- Scenario: A normal feature
9
- Given I have a pending step
10
- When I run this feature with the progress format
11
- Then I should get a no method error for 'backtrace_line'
12
-
@@ -1,4 +0,0 @@
1
- Feature: https://rspec.lighthouseapp.com/projects/16211/tickets/246-distorted-console-output-for-slightly-complicated-step-regexp-match
2
-
3
- Scenario: See "No Record(s) Found" for Zero Existing
4
- Given no public holiday exists in the system
@@ -1,11 +0,0 @@
1
- Feature: pending method causes failure in Scenario Outlines
2
-
3
- Scenario Outline: blah
4
- Given this is pending until we fix it
5
- Given context with <Stuff>
6
- When action
7
- Then outcome with <Blah>
8
-
9
- Examples:
10
- | Stuff | Blah |
11
- | Cheese | Pepper Jack |
@@ -1,14 +0,0 @@
1
- Feature: Background
2
- In for background to work properly
3
- As a user
4
- I want it to run transactionally and only once when I call an individual scenario
5
-
6
- Background:
7
- Given plop
8
-
9
- Scenario: Barping
10
- When I barp
11
-
12
-
13
- Scenario: Wibbling
14
- When I wibble
@@ -1,14 +0,0 @@
1
- begin require 'rspec/expectations'; rescue LoadError; require 'spec/expectations'; end
2
-
3
- Given /^plop$/ do
4
- raise "Only one plop!" if @plop
5
- @plop = true
6
- end
7
-
8
- When /^I barp$/ do
9
- @plop.should == true
10
- end
11
-
12
- When /^I wibble$/ do
13
- @plop.should == true
14
- end
@@ -1,26 +0,0 @@
1
- @intentional_failure
2
- Feature: Hooks
3
- In order to integrate with my complex environment
4
- I need to check scenario status in an After block
5
-
6
- @272_failed
7
- Scenario: Failed
8
- Given I fail
9
-
10
- @272_undefined
11
- Scenario: Undefined
12
- Given I am undefined
13
-
14
- @272_passed
15
- Scenario: Passed
16
- Given I pass
17
-
18
- @272_outline
19
- Scenario Outline: Should work too
20
- Given <something>
21
-
22
- Examples:
23
- | something |
24
- | I fail |
25
- | I am undefined |
26
- | I pass |
@@ -1,53 +0,0 @@
1
- begin require 'rspec/expectations'; rescue LoadError; require 'spec/expectations'; end
2
-
3
- Given /^I fail$/ do
4
- raise "BOOM (this is expected)"
5
- end
6
-
7
- Given /^I pass$/ do
8
- end
9
-
10
- module HookChecks
11
- def check_failed(scenario)
12
- scenario.should be_failed
13
- scenario.should_not be_passed
14
- scenario.exception.message.should == "BOOM (this is expected)"
15
- end
16
-
17
- def check_undefined(scenario)
18
- scenario.should_not be_failed
19
- scenario.should_not be_passed
20
- end
21
-
22
- def check_passed(scenario)
23
- scenario.should_not be_failed
24
- scenario.should be_passed
25
- end
26
- end
27
-
28
- World(HookChecks)
29
-
30
- After('@272_failed') do |scenario|
31
- check_failed(scenario)
32
- end
33
-
34
- After('@272_undefined') do |scenario|
35
- check_undefined(scenario)
36
- end
37
-
38
- After('@272_passed') do |scenario|
39
- check_passed(scenario)
40
- end
41
-
42
- counter = 0
43
- After('@272_outline') do |scenario|
44
- case(counter)
45
- when 0
46
- check_failed(scenario)
47
- when 1
48
- check_undefined(scenario)
49
- when 2
50
- check_passed(scenario)
51
- end
52
- counter +=1
53
- end
@@ -1,25 +0,0 @@
1
- Feature: pystring indentaion testcase
2
-
3
- Scenario: example of correct indentation
4
- Given multiline string
5
- """
6
- I'm a cucumber and I'm ok
7
- I sleep all night and test all day
8
- """
9
- Then string is
10
- """
11
- I'm a cucumber and I'm ok
12
- I sleep all night and test all day
13
- """
14
-
15
- Scenario: example of wrong indentation
16
- Given I am in tickets/features/279
17
- When I run cucumber -q wrong.feature_
18
- Then it should fail with
19
- """
20
-
21
- """
22
- And STDERR should match
23
- """
24
- wrong.feature_:8:10: Parse error
25
- """