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,6 +1,5 @@
1
1
  module Cucumber
2
2
  module Formatter
3
-
4
3
  module SpecHelperDsl
5
4
  attr_reader :feature_content, :step_defs, :feature_filename
6
5
 
@@ -14,35 +13,42 @@ module Cucumber
14
13
  end
15
14
  end
16
15
 
16
+ require 'cucumber/core'
17
17
  module SpecHelper
18
+ include Core
19
+
18
20
  def run_defined_feature
19
21
  define_steps
20
- features = load_features(self.class.feature_content || raise("No feature content defined!"))
21
- run(features)
22
+ runtime.visitor = report
23
+ execute [gherkin_doc], mappings, report
24
+ end
25
+
26
+ require 'cucumber/mappings'
27
+ def mappings
28
+ @mappings ||= Mappings.new
29
+ end
30
+
31
+ require 'cucumber/reports/legacy_formatter'
32
+ def report
33
+ @report ||= Cucumber::Reports::LegacyFormatter.new runtime, [@formatter]
22
34
  end
23
35
 
24
- def step_mother
25
- @step_mother ||= Runtime.new
36
+ require 'cucumber/core/gherkin/document'
37
+ def gherkin_doc
38
+ Core::Gherkin::Document.new(self.class.feature_filename, gherkin)
26
39
  end
27
40
 
28
- def load_features(content)
29
- feature_file = FeatureFile.new(self.class.feature_filename, content)
30
- features = Ast::Features.new
31
- filters = []
32
- feature = feature_file.parse(filters, {})
33
- features.add_feature(feature) if feature
34
- features
41
+ def gherkin
42
+ self.class.feature_content || raise("No feature content defined!")
35
43
  end
36
44
 
37
- def run(features)
38
- configuration = Cucumber::Configuration.default
39
- tree_walker = Cucumber::Ast::TreeWalker.new(step_mother, [@formatter], configuration)
40
- tree_walker.visit_features(features)
45
+ def runtime
46
+ mappings.runtime
41
47
  end
42
48
 
43
49
  def define_steps
44
50
  return unless step_defs = self.class.step_defs
45
- rb = step_mother.load_programming_language('rb')
51
+ rb = runtime.load_programming_language('rb')
46
52
  dsl = Object.new
47
53
  dsl.extend RbSupport::RbDsl
48
54
  dsl.instance_exec &step_defs
@@ -4,59 +4,50 @@ require 'rake'
4
4
 
5
5
  module Cucumber
6
6
  module Rake
7
-
8
7
  describe Task::ForkedCucumberRunner do
9
-
10
8
  let(:libs) { ['lib'] }
11
9
  let(:binary) { Cucumber::BINARY }
12
10
  let(:cucumber_opts) { ['--cuke-option'] }
13
11
  let(:feature_files) { ['./some.feature'] }
14
12
 
15
13
  context "when running with bundler" do
16
-
17
14
  let(:bundler) { true }
18
15
 
19
16
  subject { Task::ForkedCucumberRunner.new(
20
17
  libs, binary, cucumber_opts, bundler, feature_files) }
21
18
 
22
19
  it "does use bundler if bundler is set to true" do
23
- subject.use_bundler.should be_true
20
+ expect(subject.use_bundler).to be true
24
21
  end
25
22
 
26
23
  it "uses bundle exec to find cucumber and libraries" do
27
- subject.cmd.should == [Cucumber::RUBY_BINARY,
28
- '-S',
29
- 'bundle',
30
- 'exec',
31
- 'cucumber',
32
- '--cuke-option'] + feature_files
24
+ expect(subject.cmd).to eq [Cucumber::RUBY_BINARY,
25
+ '-S',
26
+ 'bundle',
27
+ 'exec',
28
+ 'cucumber',
29
+ '--cuke-option'] + feature_files
33
30
  end
34
-
35
31
  end
36
32
 
37
33
  context "when running without bundler" do
38
-
39
34
  let(:bundler) { false }
40
35
 
41
36
  subject { Task::ForkedCucumberRunner.new(
42
37
  libs, binary, cucumber_opts, bundler, feature_files) }
43
38
 
44
39
  it "does not use bundler if bundler is set to false" do
45
- subject.use_bundler.should be_false
40
+ expect(subject.use_bundler).to be false
46
41
  end
47
42
 
48
43
  it "uses well known cucumber location and specified libraries" do
49
- subject.cmd.should == [Cucumber::RUBY_BINARY,
50
- "-I",
51
- "\"lib\"",
52
- "\"#{Cucumber::BINARY }\"",
53
- "--cuke-option"] + feature_files
44
+ expect(subject.cmd).to eq [Cucumber::RUBY_BINARY,
45
+ "-I",
46
+ "\"lib\"",
47
+ "\"#{Cucumber::BINARY }\"",
48
+ "--cuke-option"] + feature_files
54
49
  end
55
-
56
50
  end
57
-
58
-
59
51
  end
60
-
61
52
  end
62
53
  end
@@ -1,5 +1,4 @@
1
1
  require 'spec_helper'
2
- require 'cucumber/step_mother'
3
2
  require 'cucumber/rb_support/rb_language'
4
3
 
5
4
  module Cucumber
@@ -19,37 +18,43 @@ module Cucumber
19
18
  let(:snippet) { double.as_null_object }
20
19
 
21
20
  it "creates a regexp Snippet class by default" do
22
- Snippet::Regexp.should_receive(:new).and_return(snippet)
21
+ expect(Snippet::Regexp).to receive(:new) { snippet }
22
+
23
23
  rb.snippet_text('Given', 'A "string" with 4 spaces', nil)
24
24
  end
25
25
 
26
26
  it "creates a regexp Snippet class explicitly" do
27
- Snippet::Regexp.should_receive(:new).and_return(snippet)
27
+ expect(Snippet::Regexp).to receive(:new) { snippet }
28
+
28
29
  rb.snippet_text('Given', 'A "string" with 4 spaces', nil, :regexp)
29
30
  end
30
31
 
31
32
  it "creates a classic Snippet class" do
32
- Snippet::Classic.should_receive(:new).and_return(snippet)
33
+ expect(Snippet::Classic).to receive(:new) { snippet }
34
+
33
35
  rb.snippet_text('Given', 'A "string" with 4 spaces', nil, :classic)
34
36
  end
35
37
 
36
38
  it "creates a percent Snippet class" do
37
- Snippet::Percent.should_receive(:new).and_return(snippet)
39
+ expect(Snippet::Percent).to receive(:new) { snippet }
40
+
38
41
  rb.snippet_text('Given', 'A "string" with 4 spaces', nil, :percent)
39
42
  end
40
43
 
41
44
  it "passes all parameters to Snippet contructor" do
42
45
  code_keyword, pattern, multiline_argument_class = double, double, double
43
- Snippet::Regexp.should_receive(:new).with(code_keyword, pattern, multiline_argument_class)
46
+
47
+ expect(Snippet::Regexp).to receive(:new).with(code_keyword, pattern, multiline_argument_class)
48
+
44
49
  rb.snippet_text(code_keyword, pattern, multiline_argument_class)
45
50
  end
46
51
 
47
52
  it "renders the snippet" do
48
- Snippet::Regexp.stub(:new => snippet)
49
- snippet.should_receive(:to_s)
53
+ allow(Snippet::Regexp).to receive(:new) { snippet }
54
+ expect(snippet).to receive(:to_s)
55
+
50
56
  rb.snippet_text('Given', 'A "string" with 4 spaces', nil)
51
57
  end
52
-
53
58
  end
54
59
 
55
60
  describe "#load_code_file" do
@@ -69,29 +74,29 @@ module Cucumber
69
74
  end
70
75
 
71
76
  rb.load_code_file('tmp.rb')
72
- $foo.should == 1
77
+ expect($foo).to eq 1
73
78
 
74
79
  a_file_called('tmp.rb') do
75
80
  "$foo = 2"
76
81
  end
77
82
 
78
83
  rb.load_code_file('tmp.rb')
79
- $foo.should == 2
84
+
85
+ expect($foo).to eq 2
80
86
  end
81
87
  end
82
88
 
83
89
  describe "Handling the World" do
84
-
85
- it "should raise an error if the world is nil" do
90
+ it "raises an error if the world is nil" do
86
91
  dsl.World {}
87
92
 
88
93
  begin
89
94
  rb.before(nil)
90
95
  raise "Should fail"
91
96
  rescue RbSupport::NilWorld => e
92
- e.message.should == "World procs should never return nil"
93
- e.backtrace.length.should == 1
94
- e.backtrace[0].should =~ /spec\/cucumber\/rb_support\/rb_language_spec\.rb\:\d+\:in `World'/
97
+ expect(e.message).to eq "World procs should never return nil"
98
+ expect(e.backtrace.length).to eq 1
99
+ expect(e.backtrace[0]).to match(/spec\/cucumber\/rb_support\/rb_language_spec\.rb\:\d+\:in `World'/)
95
100
  end
96
101
  end
97
102
 
@@ -104,17 +109,19 @@ module Cucumber
104
109
  class ClassOne
105
110
  end
106
111
 
107
- it "should implicitly extend world with modules" do
112
+ it "implicitlys extend world with modules" do
108
113
  dsl.World(ModuleOne, ModuleTwo)
109
114
  rb.before(double('scenario').as_null_object)
110
115
  class << rb.current_world
111
- included_modules.inspect.should =~ /ModuleOne/ # Workaround for RSpec/Ruby 1.9 issue with namespaces
112
- included_modules.inspect.should =~ /ModuleTwo/
116
+ extend RSpec::Matchers
117
+
118
+ expect(included_modules.inspect).to match(/ModuleOne/) # Workaround for RSpec/Ruby 1.9 issue with namespaces
119
+ expect(included_modules.inspect).to match(/ModuleTwo/)
113
120
  end
114
- rb.current_world.class.should == Object
121
+ expect(rb.current_world.class).to eq Object
115
122
  end
116
123
 
117
- it "should raise error when we try to register more than one World proc" do
124
+ it "raises error when we try to register more than one World proc" do
118
125
  expected_error = %{You can only pass a proc to #World once, but it's happening
119
126
  in 2 places:
120
127
 
@@ -126,47 +133,47 @@ or http://wiki.github.com/cucumber/cucumber/a-whole-new-world.
126
133
 
127
134
  }
128
135
  dsl.World { Hash.new }
129
- lambda do
130
- dsl.World { Array.new }
131
- end.should raise_error(RbSupport::MultipleWorld, /#{expected_error}/)
132
136
 
137
+ expect(-> {
138
+ dsl.World { Array.new }
139
+ }).to raise_error(RbSupport::MultipleWorld, /#{expected_error}/)
133
140
  end
134
141
  end
135
142
 
136
143
  describe "step argument transformations" do
137
-
138
144
  describe "without capture groups" do
139
145
  it "complains when registering with a with no transform block" do
140
- lambda do
146
+ expect(-> {
141
147
  dsl.Transform('^abc$')
142
- end.should raise_error(Cucumber::RbSupport::RbTransform::MissingProc)
148
+ }).to raise_error(Cucumber::RbSupport::RbTransform::MissingProc)
143
149
  end
144
150
 
145
151
  it "complains when registering with a zero-arg transform block" do
146
- lambda do
152
+ expect(-> {
147
153
  dsl.Transform('^abc$') {42}
148
- end.should raise_error(Cucumber::RbSupport::RbTransform::MissingProc)
154
+ }).to raise_error(Cucumber::RbSupport::RbTransform::MissingProc)
149
155
  end
150
156
 
151
157
  it "complains when registering with a splat-arg transform block" do
152
- lambda do
158
+ expect(-> {
153
159
  dsl.Transform('^abc$') {|*splat| 42 }
154
- end.should raise_error(Cucumber::RbSupport::RbTransform::MissingProc)
160
+ }).to raise_error(Cucumber::RbSupport::RbTransform::MissingProc)
155
161
  end
156
162
 
157
163
  it "complains when transforming with an arity mismatch" do
158
- lambda do
164
+ expect(-> {
159
165
  dsl.Transform('^abc$') {|one, two| 42 }
160
166
  rb.execute_transforms(['abc'])
161
- end.should raise_error(Cucumber::ArityMismatchError)
167
+ }).to raise_error(Cucumber::ArityMismatchError)
162
168
  end
163
169
 
164
170
  it "allows registering a regexp pattern that yields the step_arg matched" do
165
171
  dsl.Transform(/^ab*c$/) {|arg| 42}
166
- rb.execute_transforms(['ab']).should == ['ab']
167
- rb.execute_transforms(['ac']).should == [42]
168
- rb.execute_transforms(['abc']).should == [42]
169
- rb.execute_transforms(['abbc']).should == [42]
172
+
173
+ expect(rb.execute_transforms(['ab'])).to eq ['ab']
174
+ expect(rb.execute_transforms(['ac'])).to eq [42]
175
+ expect(rb.execute_transforms(['abc'])).to eq [42]
176
+ expect(rb.execute_transforms(['abbc'])).to eq [42]
170
177
  end
171
178
 
172
179
  it "transforms times" do
@@ -174,83 +181,86 @@ or http://wiki.github.com/cucumber/cucumber/a-whole-new-world.
174
181
  dsl.Transform(/^(\d\d-\d\d-\d\d\d\d)$/) do |arg|
175
182
  Time.parse(arg)
176
183
  end
177
- rb.execute_transforms(['10-0E-1971']).should == ['10-0E-1971']
178
- rb.execute_transforms(['10-03-1971']).should == [Time.parse('10-03-1971')]
184
+ expect(rb.execute_transforms(['10-0E-1971'])).to eq ['10-0E-1971']
185
+ expect(rb.execute_transforms(['10-03-1971'])).to eq [Time.parse('10-03-1971')]
179
186
  end
180
187
  end
181
188
 
182
189
  describe "with capture groups" do
183
190
  it "complains when registering with a with no transform block" do
184
- lambda do
191
+ expect(-> {
185
192
  dsl.Transform('^a(.)c$')
186
- end.should raise_error(Cucumber::RbSupport::RbTransform::MissingProc)
193
+ }).to raise_error(Cucumber::RbSupport::RbTransform::MissingProc)
187
194
  end
188
195
 
189
196
  it "complains when registering with a zero-arg transform block" do
190
- lambda do
197
+ expect(-> {
191
198
  dsl.Transform('^a(.)c$') { 42 }
192
- end.should raise_error(Cucumber::RbSupport::RbTransform::MissingProc)
199
+ }).to raise_error(Cucumber::RbSupport::RbTransform::MissingProc)
193
200
  end
194
201
 
195
202
  it "complains when registering with a splat-arg transform block" do
196
- lambda do
203
+ expect(-> {
197
204
  dsl.Transform('^a(.)c$') {|*splat| 42 }
198
- end.should raise_error(Cucumber::RbSupport::RbTransform::MissingProc)
205
+ }).to raise_error(Cucumber::RbSupport::RbTransform::MissingProc)
199
206
  end
200
207
 
201
208
  it "complains when transforming with an arity mismatch" do
202
- lambda do
209
+ expect(-> {
203
210
  dsl.Transform('^a(.)c$') {|one, two| 42 }
204
211
  rb.execute_transforms(['abc'])
205
- end.should raise_error(Cucumber::ArityMismatchError)
212
+ }).to raise_error(Cucumber::ArityMismatchError)
206
213
  end
207
214
 
208
215
  it "allows registering a regexp pattern that yields capture groups" do
209
216
  dsl.Transform(/^shape: (.+), color: (.+)$/) do |shape, color|
210
217
  {shape.to_sym => color.to_sym}
211
218
  end
212
- rb.execute_transforms(['shape: circle, color: blue']).should == [{:circle => :blue}]
213
- rb.execute_transforms(['shape: square, color: red']).should == [{:square => :red}]
214
- rb.execute_transforms(['not shape: square, not color: red']).should == ['not shape: square, not color: red']
219
+
220
+ expect(rb.execute_transforms(['shape: circle, color: blue'])).to eq [{:circle => :blue}]
221
+ expect(rb.execute_transforms(['shape: square, color: red'])).to eq [{:square => :red}]
222
+ expect(rb.execute_transforms(['not shape: square, not color: red'])).to eq ['not shape: square, not color: red']
215
223
  end
216
224
  end
217
225
 
218
226
  it "allows registering a string pattern" do
219
227
  dsl.Transform('^ab*c$') {|arg| 42}
220
- rb.execute_transforms(['ab']).should == ['ab']
221
- rb.execute_transforms(['ac']).should == [42]
222
- rb.execute_transforms(['abc']).should == [42]
223
- rb.execute_transforms(['abbc']).should == [42]
228
+
229
+ expect(rb.execute_transforms(['ab'])).to eq ['ab']
230
+ expect(rb.execute_transforms(['ac'])).to eq [42]
231
+ expect(rb.execute_transforms(['abc'])).to eq [42]
232
+ expect(rb.execute_transforms(['abbc'])).to eq [42]
224
233
  end
225
234
 
226
235
  it "gives match priority to transforms defined last" do
227
236
  dsl.Transform(/^transform_me$/) {|arg| :foo }
228
237
  dsl.Transform(/^transform_me$/) {|arg| :bar }
229
238
  dsl.Transform(/^transform_me$/) {|arg| :baz }
230
- rb.execute_transforms(['transform_me']).should == [:baz]
239
+
240
+ expect(rb.execute_transforms(['transform_me'])).to eq [:baz]
231
241
  end
232
242
 
233
243
  it "allows registering a transform which returns nil" do
234
244
  dsl.Transform('^ac$') {|arg| nil}
235
- rb.execute_transforms(['ab']).should == ['ab']
236
- rb.execute_transforms(['ac']).should == [nil]
245
+
246
+ expect(rb.execute_transforms(['ab'])).to eq ['ab']
247
+ expect(rb.execute_transforms(['ac'])).to eq [nil]
237
248
  end
238
249
  end
239
250
 
240
251
  describe "hooks" do
241
-
242
- it "should find before hooks" do
252
+ it "finds before hooks" do
243
253
  fish = dsl.Before('@fish'){}
244
254
  meat = dsl.Before('@meat'){}
245
255
 
246
256
  scenario = double('Scenario')
247
- scenario.should_receive(:accept_hook?).with(fish).and_return(true)
248
- scenario.should_receive(:accept_hook?).with(meat).and_return(false)
249
257
 
250
- rb.hooks_for(:before, scenario).should == [fish]
258
+ expect(scenario).to receive(:accept_hook?).with(fish) { true }
259
+ expect(scenario).to receive(:accept_hook?).with(meat) { false }
260
+ expect(rb.hooks_for(:before, scenario)).to eq [fish]
251
261
  end
252
262
 
253
- it "should find around hooks" do
263
+ it "finds around hooks" do
254
264
  a = dsl.Around do |scenario, block|
255
265
  end
256
266
 
@@ -258,13 +268,12 @@ or http://wiki.github.com/cucumber/cucumber/a-whole-new-world.
258
268
  end
259
269
 
260
270
  scenario = double('Scenario')
261
- scenario.should_receive(:accept_hook?).with(a).and_return(true)
262
- scenario.should_receive(:accept_hook?).with(b).and_return(false)
263
271
 
264
- rb.hooks_for(:around, scenario).should == [a]
272
+ expect(scenario).to receive(:accept_hook?).with(a) { true }
273
+ expect(scenario).to receive(:accept_hook?).with(b) { false }
274
+ expect(rb.hooks_for(:around, scenario)).to eq [a]
265
275
  end
266
276
  end
267
-
268
277
  end
269
278
  end
270
279
  end
@@ -1,6 +1,4 @@
1
1
  require 'spec_helper'
2
- require 'cucumber/ast'
3
- require 'cucumber/step_mother'
4
2
  require 'cucumber/rb_support/rb_language'
5
3
 
6
4
  module Cucumber
@@ -20,104 +18,127 @@ module Cucumber
20
18
  end
21
19
 
22
20
  def run_step(text)
23
- support_code.step_match(text).invoke(nil)
21
+ support_code.step_match(text).invoke(MultilineArgument::None.new)
24
22
  end
25
23
 
26
- it "should allow calling of other steps" do
27
- dsl.Given /Outside/ do
24
+ it "allows calling of other steps" do
25
+ dsl.Given(/Outside/) do
28
26
  step "Inside"
29
27
  end
30
- dsl.Given /Inside/ do
28
+ dsl.Given(/Inside/) do
31
29
  $inside = true
32
30
  end
33
31
 
34
32
  run_step "Outside"
35
- $inside.should == true
33
+
34
+ expect($inside).to be true
36
35
  end
37
36
 
38
- it "should allow calling of other steps with inline arg" do
39
- dsl.Given /Outside/ do
40
- step "Inside", Cucumber::Ast::Table.new([['inside']])
37
+ it "allows calling of other steps with inline arg" do
38
+ dsl.Given(/Outside/) do
39
+ location = Core::Ast::Location.new(__FILE__, __LINE__)
40
+ step "Inside", MultilineArgument.from(Cucumber::Core::Ast::DataTable.new([['inside']], location))
41
41
  end
42
- dsl.Given /Inside/ do |table|
42
+ dsl.Given(/Inside/) do |table|
43
43
  $inside = table.raw[0][0]
44
44
  end
45
45
 
46
46
  run_step "Outside"
47
- $inside.should == 'inside'
47
+
48
+ expect($inside).to eq 'inside'
48
49
  end
49
50
 
50
51
  context "mapping to world methods" do
51
- it "should call a method on the world when specified with a symbol" do
52
- rb.current_world.should_receive(:with_symbol)
53
- dsl.Given /With symbol/, :with_symbol
52
+ it "calls a method on the world when specified with a symbol" do
53
+ expect(rb.current_world).to receive(:with_symbol)
54
+
55
+ dsl.Given(/With symbol/, :with_symbol)
54
56
 
55
57
  run_step "With symbol"
56
58
  end
57
59
 
58
- it "should call a method on a specified object" do
60
+ it "calls a method on a specified object" do
59
61
  target = double('target')
60
- rb.current_world.stub(:target => target)
61
- dsl.Given /With symbol on block/, :with_symbol, :on => lambda { target }
62
62
 
63
- target.should_receive(:with_symbol)
63
+ allow(rb.current_world).to receive(:target) { target }
64
+
65
+ dsl.Given(/With symbol on block/, :with_symbol, :on => lambda { target })
66
+
67
+ expect(target).to receive(:with_symbol)
68
+
64
69
  run_step "With symbol on block"
65
70
  end
66
71
 
67
- it "should call a method on a specified world attribute" do
72
+ it "calls a method on a specified world attribute" do
68
73
  target = double('target')
69
- rb.current_world.stub(:target => target)
70
- dsl.Given /With symbol on symbol/, :with_symbol, :on => :target
71
74
 
72
- target.should_receive(:with_symbol)
75
+ allow(rb.current_world).to receive(:target) { target }
76
+
77
+ dsl.Given(/With symbol on symbol/, :with_symbol, :on => :target)
78
+
79
+ expect(target).to receive(:with_symbol)
80
+
73
81
  run_step "With symbol on symbol"
74
82
  end
75
83
  end
76
84
 
77
- it "should raise Undefined when inside step is not defined" do
78
- dsl.Given /Outside/ do
85
+ it "raises Undefined when inside step is not defined" do
86
+ dsl.Given(/Outside/) do
79
87
  step 'Inside'
80
88
  end
81
89
 
82
- lambda { run_step "Outside" }.
83
- should raise_error(Cucumber::Undefined, 'Undefined step: "Inside"')
90
+ expect(-> {
91
+ run_step "Outside"
92
+ }).to raise_error(Cucumber::Undefined, 'Undefined step: "Inside"')
84
93
  end
85
94
 
86
- it "should allow forced pending" do
87
- dsl.Given /Outside/ do
95
+ it "allows forced pending" do
96
+ dsl.Given(/Outside/) do
88
97
  pending("Do me!")
89
98
  end
90
99
 
91
- lambda { run_step "Outside" }.
92
- should raise_error(Cucumber::Pending, "Do me!")
100
+ expect(-> {
101
+ run_step "Outside"
102
+ }).to raise_error(Cucumber::Pending, "Do me!")
103
+ end
104
+
105
+ it "raises ArityMismatchError when the number of capture groups differs from the number of step arguments" do
106
+ dsl.Given(/No group: \w+/) do |arg|
107
+ end
108
+
109
+ expect(-> {
110
+ run_step "No group: arg"
111
+ }).to raise_error(Cucumber::ArityMismatchError)
93
112
  end
94
113
 
95
- it "should raise ArityMismatchError when the number of capture groups differs from the number of step arguments" do
96
- dsl.Given /No group: \w+/ do |arg|
114
+ it "does not allow modification of args since it messes up pretty formatting" do
115
+ dsl.Given(/My car is (.*)/) do |colour|
116
+ colour << "xxx"
97
117
  end
98
118
 
99
- lambda { run_step "No group: arg" }.
100
- should raise_error(Cucumber::ArityMismatchError)
119
+ expect(-> {
120
+ run_step "My car is white"
121
+ }).to raise_error(RuntimeError, /can't modify frozen String/i)
101
122
  end
102
123
 
103
- it "should allow puts" do
104
- user_interface.should_receive(:puts).with('wasup')
105
- dsl.Given /Loud/ do
124
+ it "allows puts" do
125
+ expect(user_interface).to receive(:puts).with('wasup')
126
+ dsl.Given(/Loud/) do
106
127
  puts 'wasup'
107
128
  end
108
129
  run_step "Loud"
109
130
  end
110
131
 
111
- it "should recognize $arg style captures" do
132
+ it "recognizes $arg style captures" do
112
133
  arg_value = "wow!"
113
134
  dsl.Given "capture this: $arg" do |arg|
114
- arg.should == arg_value
135
+ expect(arg).to eq arg_value
115
136
  end
116
137
  run_step "capture this: wow!"
117
138
  end
118
139
 
119
- it "should have a JSON representation of the signature" do
120
- RbStepDefinition.new(rb, /I CAN HAZ (\d+) CUKES/i, lambda{}, {}).to_hash.should == {'source' => "I CAN HAZ (\\d+) CUKES", 'flags' => 'i'}
140
+ it "has a JSON representation of the signature" do
141
+ expect(RbStepDefinition.new(rb, /I CAN HAZ (\d+) CUKES/i, lambda{}, {}).to_hash).to eq({ 'source' => "I CAN HAZ (\\d+) CUKES", 'flags' => 'i' })
121
142
  end
122
143
  end
123
144
  end