opal-rspec 0.6.2 → 0.7.0.rc.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (710) hide show
  1. checksums.yaml +4 -4
  2. data/.gitmodules +5 -5
  3. data/.travis.yml +47 -19
  4. data/Appraisals +9 -0
  5. data/CHANGELOG.md +4 -6
  6. data/Gemfile +9 -9
  7. data/README.md +2 -2
  8. data/Rakefile +4 -182
  9. data/bin/console +14 -0
  10. data/{util/create_requires.rb → bin/generate_requires} +20 -10
  11. data/bin/opal +3 -0
  12. data/bin/opal-rspec +3 -0
  13. data/bin/setup +7 -0
  14. data/config.ru +13 -11
  15. data/example/Gemfile +5 -1
  16. data/exe/opal-rspec +78 -0
  17. data/gemfiles/.bundle/config +2 -0
  18. data/gemfiles/opal_0.11.gemfile +14 -0
  19. data/gemfiles/opal_master.gemfile +14 -0
  20. data/{opal → lib-opal}/opal-rspec.rb +0 -0
  21. data/lib-opal/opal/rspec.rb +5 -0
  22. data/{opal → lib-opal}/opal/rspec/async.rb +3 -2
  23. data/lib-opal/opal/rspec/async/core_ext.rb +23 -0
  24. data/lib-opal/opal/rspec/async/example.rb +187 -0
  25. data/{opal → lib-opal}/opal/rspec/async/example_group.rb +1 -1
  26. data/{opal → lib-opal}/opal/rspec/async/hooks.rb +4 -2
  27. data/lib-opal/opal/rspec/async/legacy.rb +49 -0
  28. data/lib-opal/opal/rspec/async/reporter.rb +17 -0
  29. data/lib-opal/opal/rspec/async/runner.rb +44 -0
  30. data/lib-opal/opal/rspec/autorun.rb +3 -0
  31. data/lib-opal/opal/rspec/browser.rb +13 -0
  32. data/lib-opal/opal/rspec/default_config.rb +12 -0
  33. data/{opal → lib-opal}/opal/rspec/fixes.rb +0 -0
  34. data/{opal/opal/rspec/fixes/opal/compatibility.rb → lib-opal/opal/rspec/fixes/opal.rb} +35 -0
  35. data/{opal → lib-opal}/opal/rspec/fixes/rspec.rb +0 -0
  36. data/{opal → lib-opal}/opal/rspec/fixes/rspec/caller_filter.rb +0 -0
  37. data/{opal → lib-opal}/opal/rspec/fixes/rspec/core.rb +0 -0
  38. data/{opal → lib-opal}/opal/rspec/fixes/rspec/core/configuration.rb +9 -0
  39. data/{opal → lib-opal}/opal/rspec/fixes/rspec/core/example.rb +0 -0
  40. data/{opal → lib-opal}/opal/rspec/fixes/rspec/core/formatters.rb +0 -0
  41. data/{opal → lib-opal}/opal/rspec/fixes/rspec/core/formatters/backtrace_formatter.rb +0 -0
  42. data/{opal → lib-opal}/opal/rspec/fixes/rspec/core/formatters/console_codes.rb +0 -0
  43. data/{opal → lib-opal}/opal/rspec/fixes/rspec/core/formatters/deprecation_formatter.rb +0 -0
  44. data/{opal → lib-opal}/opal/rspec/fixes/rspec/core/formatters/generated_deprecation_message.rb +0 -0
  45. data/lib-opal/opal/rspec/fixes/rspec/core/formatters/json_formatter.rb +15 -0
  46. data/{opal → lib-opal}/opal/rspec/fixes/rspec/core/formatters/loader.rb +6 -0
  47. data/{opal → lib-opal}/opal/rspec/fixes/rspec/core/metadata.rb +0 -0
  48. data/{opal → lib-opal}/opal/rspec/fixes/rspec/core/notifications.rb +0 -0
  49. data/{opal → lib-opal}/opal/rspec/fixes/rspec/core/notifications/examples_notification.rb +0 -0
  50. data/{opal → lib-opal}/opal/rspec/fixes/rspec/core/notifications/failed_example_notification.rb +0 -0
  51. data/lib-opal/opal/rspec/fixes/rspec/core/notifications/summary_notification.rb +21 -0
  52. data/{opal → lib-opal}/opal/rspec/fixes/rspec/core/ordering.rb +0 -0
  53. data/{opal → lib-opal}/opal/rspec/fixes/rspec/core/ordering/random.rb +0 -0
  54. data/{opal → lib-opal}/opal/rspec/fixes/rspec/core/warnings.rb +10 -1
  55. data/{opal → lib-opal}/opal/rspec/fixes/rspec/example_groups.rb +0 -0
  56. data/{opal → lib-opal}/opal/rspec/fixes/rspec/expectations.rb +0 -0
  57. data/{opal → lib-opal}/opal/rspec/fixes/rspec/expectations/fail_with.rb +0 -0
  58. data/{opal → lib-opal}/opal/rspec/fixes/rspec/matchers.rb +0 -0
  59. data/{opal → lib-opal}/opal/rspec/fixes/rspec/matchers/built_in.rb +0 -0
  60. data/{opal → lib-opal}/opal/rspec/fixes/rspec/matchers/built_in/all.rb +0 -0
  61. data/{opal → lib-opal}/opal/rspec/fixes/rspec/matchers/built_in/compound.rb +0 -0
  62. data/{opal → lib-opal}/opal/rspec/fixes/rspec/matchers/built_in/start_and_end_with.rb +0 -0
  63. data/{opal → lib-opal}/opal/rspec/fixes/rspec/matchers/built_in/yield.rb +0 -0
  64. data/{opal → lib-opal}/opal/rspec/fixes/rspec/matchers/pretty.rb +0 -0
  65. data/{opal → lib-opal}/opal/rspec/fixes/rspec/mocks.rb +0 -0
  66. data/{opal → lib-opal}/opal/rspec/fixes/rspec/mocks/error_generator.rb +0 -0
  67. data/lib-opal/opal/rspec/fixes/rspec/mocks/space.rb +41 -0
  68. data/{opal → lib-opal}/opal/rspec/fixes/rspec/mocks/test_double.rb +0 -0
  69. data/{opal → lib-opal}/opal/rspec/fixes/rspec/mocks/verifying_double.rb +0 -0
  70. data/{opal → lib-opal}/opal/rspec/fixes/rspec/support.rb +1 -0
  71. data/{opal → lib-opal}/opal/rspec/fixes/rspec/support/encoded_string.rb +0 -0
  72. data/lib-opal/opal/rspec/fixes/rspec/support/formatter_support.rb +34 -0
  73. data/{opal → lib-opal}/opal/rspec/fixes/rspec/support/recursive_const_methods.rb +0 -0
  74. data/{opal → lib-opal}/opal/rspec/fixes/rspec/support/spec.rb +0 -0
  75. data/{opal → lib-opal}/opal/rspec/fixes/rspec/support/spec/stderr_splitter.rb +0 -0
  76. data/{opal → lib-opal}/opal/rspec/fixes/rspec/support/warnings.rb +0 -2
  77. data/{opal → lib-opal}/opal/rspec/formatter/browser_formatter.rb +0 -0
  78. data/{opal → lib-opal}/opal/rspec/formatter/document_io.rb +0 -0
  79. data/{opal → lib-opal}/opal/rspec/formatter/element.rb +0 -0
  80. data/{opal → lib-opal}/opal/rspec/formatter/html_printer.rb +0 -0
  81. data/{opal → lib-opal}/opal/rspec/formatter/noop_flush_string_io.rb +2 -0
  82. data/{opal → lib-opal}/opal/rspec/pre_require_fixes.rb +1 -1
  83. data/{opal → lib-opal}/opal/rspec/requires.rb +5 -2
  84. data/lib-opal/opal/rspec/spec_opts.rb.erb +1 -0
  85. data/{opal → lib-opal}/opal/rspec/sprockets_runner.rb.erb +0 -0
  86. data/lib/opal/rspec.rb +37 -28
  87. data/lib/opal/rspec/cached_environment.rb +7 -4
  88. data/lib/opal/rspec/locator.rb +38 -0
  89. data/lib/opal/rspec/rake_task.rb +12 -130
  90. data/lib/opal/rspec/runner.rb +136 -0
  91. data/lib/opal/rspec/sprockets_environment.rb +5 -3
  92. data/lib/opal/rspec/version.rb +1 -1
  93. data/opal-rspec.gemspec +32 -20
  94. data/rspec-core/spec/files_to_exclude.txt +12 -0
  95. data/rspec-core/spec/filters.rb +211 -0
  96. data/rspec-core/spec/fixes/missing_constants.rb +34 -0
  97. data/{spec/rspec/core → rspec-core/spec/fixes}/sandboxing.rb +0 -0
  98. data/rspec-core/spec/fixes/shared_examples.rb +6 -0
  99. data/rspec-core/spec/requires.rb +41 -0
  100. data/{spec/rspec/expectations/spec_files_exclude.txt → rspec-expectations/spec/files_to_exclude.txt} +0 -0
  101. data/rspec-expectations/spec/filters.rb +188 -0
  102. data/{spec/rspec/expectations/fixes/not_compatible.rb → rspec-expectations/spec/fixes/missing_constants.rb} +4 -0
  103. data/rspec-expectations/spec/fixes/shared_examples.rb +15 -0
  104. data/rspec-expectations/spec/requires.rb +32 -0
  105. data/{spec/rspec/mocks/spec_files_exclude.txt → rspec-mocks/spec/files_to_exclude.txt} +0 -0
  106. data/rspec-mocks/spec/filters.rb +98 -0
  107. data/rspec-mocks/spec/fixes/shared_examples.rb +6 -0
  108. data/rspec-mocks/spec/requires.rb +22 -0
  109. data/{spec/rspec/support/spec_files_exclude.txt → rspec-support/spec/files_to_exclude.txt} +0 -0
  110. data/rspec-support/spec/filters.rb +17 -0
  111. data/{spec/rspec/mocks → rspec-support/spec}/fixes/missing_constants.rb +0 -0
  112. data/{spec/rspec/core → rspec-support/spec}/fixes/shared_examples.rb +1 -0
  113. data/{spec/rspec/core/require_specs.rb → rspec-support/spec/requires.rb} +14 -8
  114. data/spec-opal-passing/spec_helper.rb +3 -0
  115. data/spec-opal-passing/tautology_spec.rb +21 -0
  116. data/{spec/rspec/core/opal_alternates/rspec → spec-opal-rspec}/core/example_group_spec.rb +0 -0
  117. data/{spec/rspec/core/opal_alternates/rspec → spec-opal-rspec}/core/failed_example_notification_spec.rb +0 -0
  118. data/{spec/rspec/core/opal_alternates/rspec → spec-opal-rspec}/core/hooks_spec.rb +0 -0
  119. data/{spec/rspec/core/opal_alternates/rspec → spec-opal-rspec}/core/memoized_helpers_spec.rb +3 -3
  120. data/{spec/rspec/core/opal_alternates/rspec → spec-opal-rspec}/core/metadata_spec.rb +0 -0
  121. data/{spec/rspec/expectations/opal_alternates → spec-opal-rspec/expectations}/be_instance_of_spec.rb +0 -0
  122. data/{spec/rspec/expectations/opal_alternates → spec-opal-rspec/expectations}/dsl_spec.rb +0 -0
  123. data/{spec/rspec/expectations/opal_alternates → spec-opal-rspec/expectations}/expectation_target_spec.rb +0 -0
  124. data/{spec/rspec/expectations/opal_alternates → spec-opal-rspec/expectations}/yield_spec.rb +0 -0
  125. data/{spec/opal → spec-opal}/after_hooks_spec.rb +0 -0
  126. data/{spec/opal → spec-opal}/around_hooks_spec.rb +0 -89
  127. data/{spec/opal → spec-opal}/async_spec.rb +1 -53
  128. data/{spec/opal → spec-opal}/before_hooks_spec.rb +0 -0
  129. data/{spec/mri/unit/opal/rspec/opal/browser_formatter_spec.rb → spec-opal/browser-formatter/opal_browser_formatter_spec.rb} +1 -1
  130. data/{spec/opal → spec-opal}/example_spec.rb +0 -0
  131. data/spec-opal/legacy_async_spec.rb +189 -0
  132. data/{spec/opal → spec-opal}/matchers_spec.rb +0 -0
  133. data/{spec/opal → spec-opal}/mock_spec.rb +0 -0
  134. data/{spec → spec-opal}/other/color_on_by_default_spec.rb +0 -0
  135. data/{spec → spec-opal}/other/dummy_spec.rb +0 -0
  136. data/{spec → spec-opal}/other/formatter_dependency.rb +0 -0
  137. data/{spec → spec-opal}/other/ignored_spec.opal +0 -0
  138. data/{spec → spec-opal}/other/test_formatter.rb +0 -0
  139. data/{spec/opal → spec-opal}/should_syntax_spec.rb +0 -0
  140. data/{spec/opal → spec-opal}/skip_pending_spec.rb +0 -0
  141. data/{spec/opal → spec-opal}/spec_helper.rb +4 -0
  142. data/{spec/mri/integration/rack → spec-opal}/sprockets_runner_js_errors.rb.erb +5 -7
  143. data/{spec/opal → spec-opal}/subject_spec.rb +0 -0
  144. data/{rspec-core/spec/rspec/core/resources/a_bar.rb → stubs/cgi/escape.rb} +0 -0
  145. data/{rspec-core/spec/rspec/core/resources/a_foo.rb → stubs/cgi/util.rb} +0 -0
  146. data/{rspec-core/spec/rspec/core/resources/acceptance/bar.rb → stubs/diff/lcs.rb} +0 -0
  147. data/{rspec-core/spec/rspec/core/resources/acceptance/foo_spec.rb → stubs/diff/lcs/assertions.rb} +0 -0
  148. data/{rspec-core/spec/support/fake_minitest/minitest.rb → stubs/diff/lcs/block.rb} +0 -0
  149. data/stubs/diff/lcs/callbacks.rb +0 -0
  150. data/stubs/diff/lcs/change.rb +0 -0
  151. data/stubs/diff/lcs/hunk.rb +0 -0
  152. data/stubs/diff/lcs/internals.rb +0 -0
  153. data/stubs/drb/drb.rb +0 -0
  154. data/stubs/minitest.rb +0 -0
  155. data/stubs/minitest/assertions.rb +0 -0
  156. data/stubs/minitest/unit.rb +0 -0
  157. data/stubs/mutex_m.rb +0 -0
  158. data/stubs/optparse.rb +0 -0
  159. data/stubs/prettyprint.rb +0 -0
  160. data/stubs/rubygems/bundler_version_finder.rb +0 -0
  161. data/stubs/rubygems/util.rb +0 -0
  162. data/stubs/shellwords.rb +0 -0
  163. data/stubs/socket.rb +0 -0
  164. data/stubs/tempfile.rb +0 -0
  165. data/stubs/test/unit/assertions.rb +0 -0
  166. data/stubs/uri.rb +0 -0
  167. data/tasks/building.rake +50 -0
  168. data/tasks/testing.rake +73 -0
  169. metadata +203 -651
  170. data/lib/opal/rspec/post_rack_locator.rb +0 -20
  171. data/lib/opal/rspec/pre_rack_locator.rb +0 -32
  172. data/opal/opal/rspec.rb +0 -23
  173. data/opal/opal/rspec/async/async_example.rb +0 -96
  174. data/opal/opal/rspec/async/legacy.rb +0 -49
  175. data/opal/opal/rspec/async/reporter.rb +0 -9
  176. data/opal/opal/rspec/fixes/opal.rb +0 -1
  177. data/opal/opal/rspec/fixes/rspec/core/formatters/json_formatter.rb +0 -10
  178. data/opal/opal/rspec/fixes/rspec/core/notifications/summary_notification.rb +0 -25
  179. data/opal/opal/rspec/fixes/rspec/mocks/space.rb +0 -37
  180. data/opal/opal/rspec/formatter/opal_closed_tty_io.rb +0 -27
  181. data/opal/opal/rspec/runner.rb +0 -91
  182. data/opal/opal/rspec/spec_opts.rb.erb +0 -27
  183. data/rspec-core/benchmarks/call_v_yield.rb +0 -81
  184. data/rspec-core/benchmarks/check_inclusion.rb +0 -125
  185. data/rspec-core/benchmarks/define_method_v_attr_reader_v_def.rb +0 -81
  186. data/rspec-core/benchmarks/eager_vs_lazy_metadata.rb +0 -126
  187. data/rspec-core/benchmarks/eager_vs_lazy_metadata/define_examples.rb +0 -22
  188. data/rspec-core/benchmarks/filter_object.rb +0 -35
  189. data/rspec-core/benchmarks/index_v_take_while.rb +0 -47
  190. data/rspec-core/benchmarks/map_then_flatten_vs_flat_map_benchmarks.rb +0 -94
  191. data/rspec-core/benchmarks/require_relative_v_require.rb +0 -75
  192. data/rspec-core/benchmarks/respond_to_v_defined.rb +0 -72
  193. data/rspec-core/benchmarks/several_regexps_v_one_big_one.rb +0 -86
  194. data/rspec-core/benchmarks/sort_by_v_shuffle.rb +0 -83
  195. data/rspec-core/benchmarks/to_proc_v_not_to_proc.rb +0 -539
  196. data/rspec-core/features/step_definitions/additional_cli_steps.rb +0 -126
  197. data/rspec-core/features/step_definitions/core_standalone_steps.rb +0 -12
  198. data/rspec-core/features/support/env.rb +0 -21
  199. data/rspec-core/features/support/require_expect_syntax_in_aruba_specs.rb +0 -29
  200. data/rspec-core/features/support/rubinius.rb +0 -6
  201. data/rspec-core/lib/rspec/autorun.rb +0 -2
  202. data/rspec-core/lib/rspec/core.rb +0 -169
  203. data/rspec-core/lib/rspec/core/backport_random.rb +0 -336
  204. data/rspec-core/lib/rspec/core/backtrace_formatter.rb +0 -66
  205. data/rspec-core/lib/rspec/core/configuration.rb +0 -1440
  206. data/rspec-core/lib/rspec/core/configuration_options.rb +0 -173
  207. data/rspec-core/lib/rspec/core/drb.rb +0 -111
  208. data/rspec-core/lib/rspec/core/dsl.rb +0 -93
  209. data/rspec-core/lib/rspec/core/example.rb +0 -502
  210. data/rspec-core/lib/rspec/core/example_group.rb +0 -606
  211. data/rspec-core/lib/rspec/core/filter_manager.rb +0 -259
  212. data/rspec-core/lib/rspec/core/flat_map.rb +0 -18
  213. data/rspec-core/lib/rspec/core/formatters.rb +0 -240
  214. data/rspec-core/lib/rspec/core/formatters/base_formatter.rb +0 -67
  215. data/rspec-core/lib/rspec/core/formatters/base_text_formatter.rb +0 -76
  216. data/rspec-core/lib/rspec/core/formatters/console_codes.rb +0 -64
  217. data/rspec-core/lib/rspec/core/formatters/deprecation_formatter.rb +0 -222
  218. data/rspec-core/lib/rspec/core/formatters/documentation_formatter.rb +0 -68
  219. data/rspec-core/lib/rspec/core/formatters/helpers.rb +0 -87
  220. data/rspec-core/lib/rspec/core/formatters/html_formatter.rb +0 -149
  221. data/rspec-core/lib/rspec/core/formatters/html_printer.rb +0 -403
  222. data/rspec-core/lib/rspec/core/formatters/json_formatter.rb +0 -94
  223. data/rspec-core/lib/rspec/core/formatters/profile_formatter.rb +0 -65
  224. data/rspec-core/lib/rspec/core/formatters/progress_formatter.rb +0 -28
  225. data/rspec-core/lib/rspec/core/formatters/protocol.rb +0 -163
  226. data/rspec-core/lib/rspec/core/formatters/snippet_extractor.rb +0 -104
  227. data/rspec-core/lib/rspec/core/hooks.rb +0 -591
  228. data/rspec-core/lib/rspec/core/memoized_helpers.rb +0 -472
  229. data/rspec-core/lib/rspec/core/metadata.rb +0 -437
  230. data/rspec-core/lib/rspec/core/metadata_filter.rb +0 -95
  231. data/rspec-core/lib/rspec/core/minitest_assertions_adapter.rb +0 -28
  232. data/rspec-core/lib/rspec/core/mocking_adapters/flexmock.rb +0 -31
  233. data/rspec-core/lib/rspec/core/mocking_adapters/mocha.rb +0 -57
  234. data/rspec-core/lib/rspec/core/mocking_adapters/null.rb +0 -14
  235. data/rspec-core/lib/rspec/core/mocking_adapters/rr.rb +0 -31
  236. data/rspec-core/lib/rspec/core/mocking_adapters/rspec.rb +0 -32
  237. data/rspec-core/lib/rspec/core/notifications.rb +0 -542
  238. data/rspec-core/lib/rspec/core/option_parser.rb +0 -222
  239. data/rspec-core/lib/rspec/core/ordering.rb +0 -155
  240. data/rspec-core/lib/rspec/core/pending.rb +0 -163
  241. data/rspec-core/lib/rspec/core/project_initializer.rb +0 -48
  242. data/rspec-core/lib/rspec/core/project_initializer/spec/spec_helper.rb +0 -89
  243. data/rspec-core/lib/rspec/core/rake_task.rb +0 -187
  244. data/rspec-core/lib/rspec/core/reporter.rb +0 -149
  245. data/rspec-core/lib/rspec/core/ruby_project.rb +0 -45
  246. data/rspec-core/lib/rspec/core/runner.rb +0 -158
  247. data/rspec-core/lib/rspec/core/shared_context.rb +0 -55
  248. data/rspec-core/lib/rspec/core/shared_example_group.rb +0 -182
  249. data/rspec-core/lib/rspec/core/test_unit_assertions_adapter.rb +0 -30
  250. data/rspec-core/lib/rspec/core/version.rb +0 -9
  251. data/rspec-core/lib/rspec/core/warnings.rb +0 -40
  252. data/rspec-core/lib/rspec/core/world.rb +0 -183
  253. data/rspec-core/spec/command_line/order_spec.rb +0 -213
  254. data/rspec-core/spec/rspec/core/backtrace_formatter_spec.rb +0 -306
  255. data/rspec-core/spec/rspec/core/configuration_options_spec.rb +0 -425
  256. data/rspec-core/spec/rspec/core/configuration_spec.rb +0 -1963
  257. data/rspec-core/spec/rspec/core/drb_spec.rb +0 -278
  258. data/rspec-core/spec/rspec/core/dsl_spec.rb +0 -85
  259. data/rspec-core/spec/rspec/core/example_execution_result_spec.rb +0 -142
  260. data/rspec-core/spec/rspec/core/example_group_constants_spec.rb +0 -16
  261. data/rspec-core/spec/rspec/core/example_group_spec.rb +0 -1621
  262. data/rspec-core/spec/rspec/core/example_spec.rb +0 -662
  263. data/rspec-core/spec/rspec/core/failed_example_notification_spec.rb +0 -25
  264. data/rspec-core/spec/rspec/core/filter_manager_spec.rb +0 -299
  265. data/rspec-core/spec/rspec/core/formatters/base_text_formatter_spec.rb +0 -182
  266. data/rspec-core/spec/rspec/core/formatters/console_codes_spec.rb +0 -65
  267. data/rspec-core/spec/rspec/core/formatters/deprecation_formatter_spec.rb +0 -225
  268. data/rspec-core/spec/rspec/core/formatters/documentation_formatter_spec.rb +0 -111
  269. data/rspec-core/spec/rspec/core/formatters/helpers_spec.rb +0 -104
  270. data/rspec-core/spec/rspec/core/formatters/html_formatter_spec.rb +0 -111
  271. data/rspec-core/spec/rspec/core/formatters/json_formatter_spec.rb +0 -183
  272. data/rspec-core/spec/rspec/core/formatters/profile_formatter_spec.rb +0 -99
  273. data/rspec-core/spec/rspec/core/formatters/progress_formatter_spec.rb +0 -55
  274. data/rspec-core/spec/rspec/core/formatters/snippet_extractor_spec.rb +0 -26
  275. data/rspec-core/spec/rspec/core/formatters_spec.rb +0 -160
  276. data/rspec-core/spec/rspec/core/hooks_filtering_spec.rb +0 -227
  277. data/rspec-core/spec/rspec/core/hooks_spec.rb +0 -447
  278. data/rspec-core/spec/rspec/core/memoized_helpers_spec.rb +0 -537
  279. data/rspec-core/spec/rspec/core/metadata_filter_spec.rb +0 -181
  280. data/rspec-core/spec/rspec/core/metadata_spec.rb +0 -642
  281. data/rspec-core/spec/rspec/core/notifications_spec.rb +0 -92
  282. data/rspec-core/spec/rspec/core/option_parser_spec.rb +0 -270
  283. data/rspec-core/spec/rspec/core/ordering_spec.rb +0 -102
  284. data/rspec-core/spec/rspec/core/pending_example_spec.rb +0 -221
  285. data/rspec-core/spec/rspec/core/pending_spec.rb +0 -8
  286. data/rspec-core/spec/rspec/core/project_initializer_spec.rb +0 -123
  287. data/rspec-core/spec/rspec/core/rake_task_spec.rb +0 -351
  288. data/rspec-core/spec/rspec/core/random_spec.rb +0 -47
  289. data/rspec-core/spec/rspec/core/reporter_spec.rb +0 -198
  290. data/rspec-core/spec/rspec/core/resources/a_spec.rb +0 -1
  291. data/rspec-core/spec/rspec/core/resources/custom_example_group_runner.rb +0 -14
  292. data/rspec-core/spec/rspec/core/resources/formatter_specs.rb +0 -58
  293. data/rspec-core/spec/rspec/core/resources/utf8_encoded.rb +0 -9
  294. data/rspec-core/spec/rspec/core/rspec_matchers_spec.rb +0 -45
  295. data/rspec-core/spec/rspec/core/ruby_project_spec.rb +0 -26
  296. data/rspec-core/spec/rspec/core/runner_spec.rb +0 -309
  297. data/rspec-core/spec/rspec/core/shared_context_spec.rb +0 -102
  298. data/rspec-core/spec/rspec/core/shared_example_group_spec.rb +0 -268
  299. data/rspec-core/spec/rspec/core/warnings_spec.rb +0 -72
  300. data/rspec-core/spec/rspec/core/world_spec.rb +0 -142
  301. data/rspec-core/spec/rspec/core_spec.rb +0 -103
  302. data/rspec-core/spec/spec_helper.rb +0 -89
  303. data/rspec-core/spec/support/config_options_helper.rb +0 -13
  304. data/rspec-core/spec/support/fake_minitest/minitest/minitest_assertions.rb +0 -4
  305. data/rspec-core/spec/support/fake_minitest/test/unit/assertions.rb +0 -6
  306. data/rspec-core/spec/support/formatter_support.rb +0 -263
  307. data/rspec-core/spec/support/helper_methods.rb +0 -26
  308. data/rspec-core/spec/support/isolated_home_directory.rb +0 -16
  309. data/rspec-core/spec/support/matchers.rb +0 -103
  310. data/rspec-core/spec/support/mathn_integration_support.rb +0 -12
  311. data/rspec-core/spec/support/sandboxing.rb +0 -50
  312. data/rspec-core/spec/support/shared_example_groups.rb +0 -43
  313. data/rspec-core/spec/support/spec_files.rb +0 -44
  314. data/rspec-expectations/benchmarks/2.x_vs_3.x_matcher_dsl_implementation.rb +0 -253
  315. data/rspec-expectations/benchmarks/autoload_v_require.rb +0 -25
  316. data/rspec-expectations/benchmarks/cloning_matchers.rb +0 -19
  317. data/rspec-expectations/benchmarks/default_messages_as_methods_v_blocks.rb +0 -27
  318. data/rspec-expectations/benchmarks/example_spec.rb +0 -9
  319. data/rspec-expectations/benchmarks/include_v_superclass.rb +0 -39
  320. data/rspec-expectations/benchmarks/match_array/failing_with_distinct_items.rb +0 -147
  321. data/rspec-expectations/benchmarks/match_array/failing_with_duplicate_items.rb +0 -122
  322. data/rspec-expectations/benchmarks/match_array/passing_with_distinct_items.rb +0 -154
  323. data/rspec-expectations/benchmarks/match_array/passing_with_duplicate_items.rb +0 -132
  324. data/rspec-expectations/benchmarks/match_array/rubyprof/passing_with_distinct_items.rb +0 -9
  325. data/rspec-expectations/benchmarks/matcher_dsl_vs_classes.rb +0 -180
  326. data/rspec-expectations/benchmarks/method_to_proc.rb +0 -72
  327. data/rspec-expectations/benchmarks/set_vs_array_include.rb +0 -68
  328. data/rspec-expectations/features/step_definitions/additional_cli_steps.rb +0 -22
  329. data/rspec-expectations/features/support/disallow_certain_apis.rb +0 -34
  330. data/rspec-expectations/features/support/env.rb +0 -21
  331. data/rspec-expectations/features/support/rubinius.rb +0 -6
  332. data/rspec-expectations/lib/rspec/expectations.rb +0 -68
  333. data/rspec-expectations/lib/rspec/expectations/configuration.rb +0 -147
  334. data/rspec-expectations/lib/rspec/expectations/expectation_target.rb +0 -119
  335. data/rspec-expectations/lib/rspec/expectations/fail_with.rb +0 -34
  336. data/rspec-expectations/lib/rspec/expectations/handler.rb +0 -167
  337. data/rspec-expectations/lib/rspec/expectations/minitest_integration.rb +0 -17
  338. data/rspec-expectations/lib/rspec/expectations/syntax.rb +0 -132
  339. data/rspec-expectations/lib/rspec/expectations/version.rb +0 -8
  340. data/rspec-expectations/lib/rspec/matchers.rb +0 -967
  341. data/rspec-expectations/lib/rspec/matchers/aliased_matcher.rb +0 -116
  342. data/rspec-expectations/lib/rspec/matchers/built_in.rb +0 -52
  343. data/rspec-expectations/lib/rspec/matchers/built_in/all.rb +0 -85
  344. data/rspec-expectations/lib/rspec/matchers/built_in/base_matcher.rb +0 -132
  345. data/rspec-expectations/lib/rspec/matchers/built_in/be.rb +0 -277
  346. data/rspec-expectations/lib/rspec/matchers/built_in/be_between.rb +0 -77
  347. data/rspec-expectations/lib/rspec/matchers/built_in/be_instance_of.rb +0 -22
  348. data/rspec-expectations/lib/rspec/matchers/built_in/be_kind_of.rb +0 -16
  349. data/rspec-expectations/lib/rspec/matchers/built_in/be_within.rb +0 -72
  350. data/rspec-expectations/lib/rspec/matchers/built_in/change.rb +0 -337
  351. data/rspec-expectations/lib/rspec/matchers/built_in/compound.rb +0 -258
  352. data/rspec-expectations/lib/rspec/matchers/built_in/contain_exactly.rb +0 -249
  353. data/rspec-expectations/lib/rspec/matchers/built_in/cover.rb +0 -24
  354. data/rspec-expectations/lib/rspec/matchers/built_in/eq.rb +0 -75
  355. data/rspec-expectations/lib/rspec/matchers/built_in/eql.rb +0 -34
  356. data/rspec-expectations/lib/rspec/matchers/built_in/equal.rb +0 -81
  357. data/rspec-expectations/lib/rspec/matchers/built_in/exist.rb +0 -86
  358. data/rspec-expectations/lib/rspec/matchers/built_in/has.rb +0 -101
  359. data/rspec-expectations/lib/rspec/matchers/built_in/have_attributes.rb +0 -84
  360. data/rspec-expectations/lib/rspec/matchers/built_in/include.rb +0 -105
  361. data/rspec-expectations/lib/rspec/matchers/built_in/match.rb +0 -29
  362. data/rspec-expectations/lib/rspec/matchers/built_in/operators.rb +0 -119
  363. data/rspec-expectations/lib/rspec/matchers/built_in/output.rb +0 -152
  364. data/rspec-expectations/lib/rspec/matchers/built_in/raise_error.rb +0 -174
  365. data/rspec-expectations/lib/rspec/matchers/built_in/respond_to.rb +0 -91
  366. data/rspec-expectations/lib/rspec/matchers/built_in/satisfy.rb +0 -39
  367. data/rspec-expectations/lib/rspec/matchers/built_in/start_and_end_with.rb +0 -82
  368. data/rspec-expectations/lib/rspec/matchers/built_in/throw_symbol.rb +0 -132
  369. data/rspec-expectations/lib/rspec/matchers/built_in/yield.rb +0 -420
  370. data/rspec-expectations/lib/rspec/matchers/composable.rb +0 -183
  371. data/rspec-expectations/lib/rspec/matchers/dsl.rb +0 -391
  372. data/rspec-expectations/lib/rspec/matchers/generated_descriptions.rb +0 -42
  373. data/rspec-expectations/lib/rspec/matchers/matcher_delegator.rb +0 -33
  374. data/rspec-expectations/lib/rspec/matchers/matcher_protocol.rb +0 -99
  375. data/rspec-expectations/lib/rspec/matchers/pretty.rb +0 -77
  376. data/rspec-expectations/spec/rspec/expectations/configuration_spec.rb +0 -226
  377. data/rspec-expectations/spec/rspec/expectations/expectation_target_spec.rb +0 -147
  378. data/rspec-expectations/spec/rspec/expectations/extensions/kernel_spec.rb +0 -69
  379. data/rspec-expectations/spec/rspec/expectations/fail_with_spec.rb +0 -73
  380. data/rspec-expectations/spec/rspec/expectations/handler_spec.rb +0 -200
  381. data/rspec-expectations/spec/rspec/expectations/minitest_integration_spec.rb +0 -25
  382. data/rspec-expectations/spec/rspec/expectations/syntax_spec.rb +0 -93
  383. data/rspec-expectations/spec/rspec/expectations_spec.rb +0 -15
  384. data/rspec-expectations/spec/rspec/matchers/aliased_matcher_spec.rb +0 -113
  385. data/rspec-expectations/spec/rspec/matchers/aliases_spec.rb +0 -455
  386. data/rspec-expectations/spec/rspec/matchers/built_in/all_spec.rb +0 -212
  387. data/rspec-expectations/spec/rspec/matchers/built_in/base_matcher_spec.rb +0 -140
  388. data/rspec-expectations/spec/rspec/matchers/built_in/be_between_spec.rb +0 -157
  389. data/rspec-expectations/spec/rspec/matchers/built_in/be_instance_of_spec.rb +0 -61
  390. data/rspec-expectations/spec/rspec/matchers/built_in/be_kind_of_spec.rb +0 -39
  391. data/rspec-expectations/spec/rspec/matchers/built_in/be_spec.rb +0 -685
  392. data/rspec-expectations/spec/rspec/matchers/built_in/be_within_spec.rb +0 -139
  393. data/rspec-expectations/spec/rspec/matchers/built_in/change_spec.rb +0 -829
  394. data/rspec-expectations/spec/rspec/matchers/built_in/compound_spec.rb +0 -537
  395. data/rspec-expectations/spec/rspec/matchers/built_in/contain_exactly_spec.rb +0 -556
  396. data/rspec-expectations/spec/rspec/matchers/built_in/cover_spec.rb +0 -67
  397. data/rspec-expectations/spec/rspec/matchers/built_in/eq_spec.rb +0 -176
  398. data/rspec-expectations/spec/rspec/matchers/built_in/eql_spec.rb +0 -39
  399. data/rspec-expectations/spec/rspec/matchers/built_in/equal_spec.rb +0 -130
  400. data/rspec-expectations/spec/rspec/matchers/built_in/exist_spec.rb +0 -139
  401. data/rspec-expectations/spec/rspec/matchers/built_in/has_spec.rb +0 -179
  402. data/rspec-expectations/spec/rspec/matchers/built_in/have_attributes_spec.rb +0 -177
  403. data/rspec-expectations/spec/rspec/matchers/built_in/include_spec.rb +0 -587
  404. data/rspec-expectations/spec/rspec/matchers/built_in/match_spec.rb +0 -100
  405. data/rspec-expectations/spec/rspec/matchers/built_in/operators_spec.rb +0 -250
  406. data/rspec-expectations/spec/rspec/matchers/built_in/output_spec.rb +0 -168
  407. data/rspec-expectations/spec/rspec/matchers/built_in/raise_error_spec.rb +0 -446
  408. data/rspec-expectations/spec/rspec/matchers/built_in/respond_to_spec.rb +0 -290
  409. data/rspec-expectations/spec/rspec/matchers/built_in/satisfy_spec.rb +0 -42
  410. data/rspec-expectations/spec/rspec/matchers/built_in/start_and_end_with_spec.rb +0 -347
  411. data/rspec-expectations/spec/rspec/matchers/built_in/throw_symbol_spec.rb +0 -133
  412. data/rspec-expectations/spec/rspec/matchers/built_in/yield_spec.rb +0 -643
  413. data/rspec-expectations/spec/rspec/matchers/composable_spec.rb +0 -77
  414. data/rspec-expectations/spec/rspec/matchers/define_negated_matcher_spec.rb +0 -199
  415. data/rspec-expectations/spec/rspec/matchers/description_generation_spec.rb +0 -189
  416. data/rspec-expectations/spec/rspec/matchers/dsl_spec.rb +0 -1036
  417. data/rspec-expectations/spec/rspec/matchers/legacy_spec.rb +0 -104
  418. data/rspec-expectations/spec/rspec/matchers_spec.rb +0 -108
  419. data/rspec-expectations/spec/spec_helper.rb +0 -94
  420. data/rspec-expectations/spec/support/matchers.rb +0 -54
  421. data/rspec-expectations/spec/support/shared_examples.rb +0 -101
  422. data/rspec-mocks/benchmarks/double_creation.rb +0 -66
  423. data/rspec-mocks/benchmarks/each_value_v_values_each.rb +0 -58
  424. data/rspec-mocks/benchmarks/find_original_method_early.rb +0 -64
  425. data/rspec-mocks/benchmarks/method_defined_at_any_visibility.rb +0 -101
  426. data/rspec-mocks/benchmarks/thread_safety.rb +0 -24
  427. data/rspec-mocks/benchmarks/transfer_nested_constants.rb +0 -77
  428. data/rspec-mocks/features/step_definitions/additional_cli_steps.rb +0 -21
  429. data/rspec-mocks/features/support/disallow_certain_apis.rb +0 -24
  430. data/rspec-mocks/features/support/env.rb +0 -22
  431. data/rspec-mocks/features/support/rubinius.rb +0 -6
  432. data/rspec-mocks/lib/rspec/mocks.rb +0 -126
  433. data/rspec-mocks/lib/rspec/mocks/any_instance.rb +0 -10
  434. data/rspec-mocks/lib/rspec/mocks/any_instance/chain.rb +0 -109
  435. data/rspec-mocks/lib/rspec/mocks/any_instance/expect_chain_chain.rb +0 -35
  436. data/rspec-mocks/lib/rspec/mocks/any_instance/expectation_chain.rb +0 -48
  437. data/rspec-mocks/lib/rspec/mocks/any_instance/message_chains.rb +0 -85
  438. data/rspec-mocks/lib/rspec/mocks/any_instance/proxy.rb +0 -116
  439. data/rspec-mocks/lib/rspec/mocks/any_instance/recorder.rb +0 -267
  440. data/rspec-mocks/lib/rspec/mocks/any_instance/stub_chain.rb +0 -45
  441. data/rspec-mocks/lib/rspec/mocks/any_instance/stub_chain_chain.rb +0 -27
  442. data/rspec-mocks/lib/rspec/mocks/argument_list_matcher.rb +0 -72
  443. data/rspec-mocks/lib/rspec/mocks/argument_matchers.rb +0 -282
  444. data/rspec-mocks/lib/rspec/mocks/configuration.rb +0 -157
  445. data/rspec-mocks/lib/rspec/mocks/error_generator.rb +0 -253
  446. data/rspec-mocks/lib/rspec/mocks/example_methods.rb +0 -379
  447. data/rspec-mocks/lib/rspec/mocks/instance_method_stasher.rb +0 -135
  448. data/rspec-mocks/lib/rspec/mocks/marshal_extension.rb +0 -41
  449. data/rspec-mocks/lib/rspec/mocks/matchers/expectation_customization.rb +0 -20
  450. data/rspec-mocks/lib/rspec/mocks/matchers/have_received.rb +0 -121
  451. data/rspec-mocks/lib/rspec/mocks/matchers/receive.rb +0 -106
  452. data/rspec-mocks/lib/rspec/mocks/matchers/receive_message_chain.rb +0 -66
  453. data/rspec-mocks/lib/rspec/mocks/matchers/receive_messages.rb +0 -71
  454. data/rspec-mocks/lib/rspec/mocks/message_chain.rb +0 -91
  455. data/rspec-mocks/lib/rspec/mocks/message_expectation.rb +0 -694
  456. data/rspec-mocks/lib/rspec/mocks/method_double.rb +0 -260
  457. data/rspec-mocks/lib/rspec/mocks/method_reference.rb +0 -155
  458. data/rspec-mocks/lib/rspec/mocks/mutate_const.rb +0 -324
  459. data/rspec-mocks/lib/rspec/mocks/object_reference.rb +0 -91
  460. data/rspec-mocks/lib/rspec/mocks/order_group.rb +0 -81
  461. data/rspec-mocks/lib/rspec/mocks/proxy.rb +0 -431
  462. data/rspec-mocks/lib/rspec/mocks/space.rb +0 -221
  463. data/rspec-mocks/lib/rspec/mocks/standalone.rb +0 -3
  464. data/rspec-mocks/lib/rspec/mocks/syntax.rb +0 -329
  465. data/rspec-mocks/lib/rspec/mocks/targets.rb +0 -97
  466. data/rspec-mocks/lib/rspec/mocks/test_double.rb +0 -135
  467. data/rspec-mocks/lib/rspec/mocks/verifying_double.rb +0 -127
  468. data/rspec-mocks/lib/rspec/mocks/verifying_message_expecation.rb +0 -62
  469. data/rspec-mocks/lib/rspec/mocks/verifying_proxy.rb +0 -171
  470. data/rspec-mocks/lib/rspec/mocks/version.rb +0 -9
  471. data/rspec-mocks/spec/rspec/mocks/and_call_original_spec.rb +0 -267
  472. data/rspec-mocks/spec/rspec/mocks/and_return_spec.rb +0 -21
  473. data/rspec-mocks/spec/rspec/mocks/and_wrap_original_spec.rb +0 -63
  474. data/rspec-mocks/spec/rspec/mocks/and_yield_spec.rb +0 -161
  475. data/rspec-mocks/spec/rspec/mocks/any_instance/message_chains_spec.rb +0 -39
  476. data/rspec-mocks/spec/rspec/mocks/any_instance_spec.rb +0 -1242
  477. data/rspec-mocks/spec/rspec/mocks/argument_matchers_spec.rb +0 -336
  478. data/rspec-mocks/spec/rspec/mocks/array_including_matcher_spec.rb +0 -39
  479. data/rspec-mocks/spec/rspec/mocks/at_least_spec.rb +0 -147
  480. data/rspec-mocks/spec/rspec/mocks/at_most_spec.rb +0 -113
  481. data/rspec-mocks/spec/rspec/mocks/before_all_spec.rb +0 -75
  482. data/rspec-mocks/spec/rspec/mocks/block_return_value_spec.rb +0 -68
  483. data/rspec-mocks/spec/rspec/mocks/combining_implementation_instructions_spec.rb +0 -196
  484. data/rspec-mocks/spec/rspec/mocks/configuration_spec.rb +0 -175
  485. data/rspec-mocks/spec/rspec/mocks/double_spec.rb +0 -830
  486. data/rspec-mocks/spec/rspec/mocks/example_methods_spec.rb +0 -11
  487. data/rspec-mocks/spec/rspec/mocks/expiration_spec.rb +0 -90
  488. data/rspec-mocks/spec/rspec/mocks/hash_excluding_matcher_spec.rb +0 -65
  489. data/rspec-mocks/spec/rspec/mocks/hash_including_matcher_spec.rb +0 -92
  490. data/rspec-mocks/spec/rspec/mocks/instance_method_stasher_spec.rb +0 -72
  491. data/rspec-mocks/spec/rspec/mocks/marshal_extension_spec.rb +0 -67
  492. data/rspec-mocks/spec/rspec/mocks/matchers/have_received_spec.rb +0 -513
  493. data/rspec-mocks/spec/rspec/mocks/matchers/receive_message_chain_spec.rb +0 -227
  494. data/rspec-mocks/spec/rspec/mocks/matchers/receive_messages_spec.rb +0 -148
  495. data/rspec-mocks/spec/rspec/mocks/matchers/receive_spec.rb +0 -525
  496. data/rspec-mocks/spec/rspec/mocks/methods_spec.rb +0 -24
  497. data/rspec-mocks/spec/rspec/mocks/mock_expectation_error_spec.rb +0 -20
  498. data/rspec-mocks/spec/rspec/mocks/mock_ordering_spec.rb +0 -112
  499. data/rspec-mocks/spec/rspec/mocks/multiple_return_value_spec.rb +0 -130
  500. data/rspec-mocks/spec/rspec/mocks/mutate_const_spec.rb +0 -561
  501. data/rspec-mocks/spec/rspec/mocks/nil_expectation_warning_spec.rb +0 -52
  502. data/rspec-mocks/spec/rspec/mocks/null_object_double_spec.rb +0 -135
  503. data/rspec-mocks/spec/rspec/mocks/once_counts_spec.rb +0 -50
  504. data/rspec-mocks/spec/rspec/mocks/order_group_spec.rb +0 -26
  505. data/rspec-mocks/spec/rspec/mocks/partial_double_spec.rb +0 -379
  506. data/rspec-mocks/spec/rspec/mocks/partial_double_using_mocks_directly_spec.rb +0 -83
  507. data/rspec-mocks/spec/rspec/mocks/precise_counts_spec.rb +0 -66
  508. data/rspec-mocks/spec/rspec/mocks/serialization_spec.rb +0 -89
  509. data/rspec-mocks/spec/rspec/mocks/should_syntax_spec.rb +0 -539
  510. data/rspec-mocks/spec/rspec/mocks/space_spec.rb +0 -242
  511. data/rspec-mocks/spec/rspec/mocks/spy_spec.rb +0 -127
  512. data/rspec-mocks/spec/rspec/mocks/stash_spec.rb +0 -43
  513. data/rspec-mocks/spec/rspec/mocks/stub_chain_spec.rb +0 -166
  514. data/rspec-mocks/spec/rspec/mocks/stub_implementation_spec.rb +0 -98
  515. data/rspec-mocks/spec/rspec/mocks/stub_spec.rb +0 -520
  516. data/rspec-mocks/spec/rspec/mocks/stubbed_message_expectations_spec.rb +0 -56
  517. data/rspec-mocks/spec/rspec/mocks/syntax_agnostic_message_matchers_spec.rb +0 -99
  518. data/rspec-mocks/spec/rspec/mocks/syntax_spec.rb +0 -7
  519. data/rspec-mocks/spec/rspec/mocks/test_double_spec.rb +0 -53
  520. data/rspec-mocks/spec/rspec/mocks/thrice_counts_spec.rb +0 -72
  521. data/rspec-mocks/spec/rspec/mocks/to_ary_spec.rb +0 -52
  522. data/rspec-mocks/spec/rspec/mocks/twice_counts_spec.rb +0 -64
  523. data/rspec-mocks/spec/rspec/mocks/verifying_doubles/class_double_with_class_loaded_spec.rb +0 -118
  524. data/rspec-mocks/spec/rspec/mocks/verifying_doubles/class_double_with_class_not_loaded_spec.rb +0 -58
  525. data/rspec-mocks/spec/rspec/mocks/verifying_doubles/construction_spec.rb +0 -54
  526. data/rspec-mocks/spec/rspec/mocks/verifying_doubles/expected_arg_verification_spec.rb +0 -81
  527. data/rspec-mocks/spec/rspec/mocks/verifying_doubles/instance_double_with_class_loaded_spec.rb +0 -195
  528. data/rspec-mocks/spec/rspec/mocks/verifying_doubles/instance_double_with_class_not_loaded_spec.rb +0 -57
  529. data/rspec-mocks/spec/rspec/mocks/verifying_doubles/method_visibility_spec.rb +0 -129
  530. data/rspec-mocks/spec/rspec/mocks/verifying_doubles/object_double_spec.rb +0 -68
  531. data/rspec-mocks/spec/rspec/mocks_spec.rb +0 -199
  532. data/rspec-mocks/spec/spec_helper.rb +0 -131
  533. data/rspec-mocks/spec/support/before_all_shared_example_group.rb +0 -16
  534. data/rspec-mocks/spec/support/doubled_classes.rb +0 -74
  535. data/rspec-mocks/spec/support/matchers.rb +0 -15
  536. data/rspec-support/benchmarks/caller.rb +0 -81
  537. data/rspec-support/lib/rspec/support.rb +0 -76
  538. data/rspec-support/lib/rspec/support/caller_filter.rb +0 -63
  539. data/rspec-support/lib/rspec/support/differ.rb +0 -214
  540. data/rspec-support/lib/rspec/support/directory_maker.rb +0 -61
  541. data/rspec-support/lib/rspec/support/encoded_string.rb +0 -69
  542. data/rspec-support/lib/rspec/support/fuzzy_matcher.rb +0 -48
  543. data/rspec-support/lib/rspec/support/hunk_generator.rb +0 -47
  544. data/rspec-support/lib/rspec/support/matcher_definition.rb +0 -31
  545. data/rspec-support/lib/rspec/support/method_signature_verifier.rb +0 -272
  546. data/rspec-support/lib/rspec/support/os.rb +0 -18
  547. data/rspec-support/lib/rspec/support/recursive_const_methods.rb +0 -76
  548. data/rspec-support/lib/rspec/support/ruby_features.rb +0 -45
  549. data/rspec-support/lib/rspec/support/spec.rb +0 -72
  550. data/rspec-support/lib/rspec/support/spec/deprecation_helpers.rb +0 -60
  551. data/rspec-support/lib/rspec/support/spec/formatting_support.rb +0 -9
  552. data/rspec-support/lib/rspec/support/spec/in_sub_process.rb +0 -43
  553. data/rspec-support/lib/rspec/support/spec/prevent_load_time_warnings.rb +0 -44
  554. data/rspec-support/lib/rspec/support/spec/shell_out.rb +0 -69
  555. data/rspec-support/lib/rspec/support/spec/stderr_splitter.rb +0 -52
  556. data/rspec-support/lib/rspec/support/spec/with_isolated_directory.rb +0 -9
  557. data/rspec-support/lib/rspec/support/spec/with_isolated_stderr.rb +0 -13
  558. data/rspec-support/lib/rspec/support/version.rb +0 -7
  559. data/rspec-support/lib/rspec/support/version_checker.rb +0 -53
  560. data/rspec-support/lib/rspec/support/warnings.rb +0 -39
  561. data/rspec-support/spec/rspec/support/caller_filter_spec.rb +0 -66
  562. data/rspec-support/spec/rspec/support/differ_spec.rb +0 -322
  563. data/rspec-support/spec/rspec/support/directory_maker_spec.rb +0 -58
  564. data/rspec-support/spec/rspec/support/encoded_string_spec.rb +0 -86
  565. data/rspec-support/spec/rspec/support/fuzzy_matcher_spec.rb +0 -179
  566. data/rspec-support/spec/rspec/support/method_signature_verifier_spec.rb +0 -357
  567. data/rspec-support/spec/rspec/support/os_spec.rb +0 -36
  568. data/rspec-support/spec/rspec/support/recursive_const_methods_spec.rb +0 -49
  569. data/rspec-support/spec/rspec/support/spec/in_sub_process_spec.rb +0 -36
  570. data/rspec-support/spec/rspec/support/spec/prevent_load_time_warnings_spec.rb +0 -10
  571. data/rspec-support/spec/rspec/support/spec/shell_out_spec.rb +0 -44
  572. data/rspec-support/spec/rspec/support/spec/stderr_splitter_spec.rb +0 -60
  573. data/rspec-support/spec/rspec/support/spec/with_isolated_std_err_spec.rb +0 -21
  574. data/rspec-support/spec/rspec/support/version_checker_spec.rb +0 -29
  575. data/rspec-support/spec/rspec/support/warnings_spec.rb +0 -66
  576. data/rspec-support/spec/rspec/support_spec.rb +0 -119
  577. data/rspec-support/spec/spec_helper.rb +0 -2
  578. data/rspec/lib/rspec.rb +0 -3
  579. data/rspec/lib/rspec/version.rb +0 -5
  580. data/spec/mri/integration/browser_spec.rb +0 -21
  581. data/spec/mri/integration/spec_opts_spec.rb +0 -81
  582. data/spec/mri/spec_helper.rb +0 -2
  583. data/spec/mri/support/capybara.rb +0 -14
  584. data/spec/mri/unit/opal/rspec/browser_formatter_spec.rb +0 -26
  585. data/spec/mri/unit/opal/rspec/cached_environment_spec.rb +0 -85
  586. data/spec/mri/unit/opal/rspec/rack/config.ru +0 -12
  587. data/spec/mri/unit/opal/rspec/rake_task_spec.rb +0 -320
  588. data/spec/mri/unit/opal/rspec/sprockets_environment_spec.rb +0 -55
  589. data/spec/mri/unit/opal/rspec/temp_dir_helper.rb +0 -19
  590. data/spec/opal/expected_failures.txt +0 -40
  591. data/spec/rspec/core/config.rb +0 -5
  592. data/spec/rspec/core/config.ru +0 -4
  593. data/spec/rspec/core/core_spec_loader.rb +0 -46
  594. data/spec/rspec/core/filter/core/async/example_group.txt +0 -13
  595. data/spec/rspec/core/filter/core/async/hooks.rb +0 -11
  596. data/spec/rspec/core/filter/core/async/memoized_helpers.txt +0 -3
  597. data/spec/rspec/core/filter/core/async/metadata.rb +0 -4
  598. data/spec/rspec/core/filter/core/bugs/filter_manager.txt +0 -4
  599. data/spec/rspec/core/filter/core/bugs/formatters.txt +0 -4
  600. data/spec/rspec/core/filter/core/bugs/memoized_helpers.rb +0 -5
  601. data/spec/rspec/core/filter/core/bugs/metadata.txt +0 -5
  602. data/spec/rspec/core/filter/core/bugs/sandbox/subject_issue_test.rb +0 -328
  603. data/spec/rspec/core/filter/core/bugs/warnings_deprecations.txt +0 -3
  604. data/spec/rspec/core/filter/core/unsupported/core.txt +0 -5
  605. data/spec/rspec/core/filter/core/unsupported/example.txt +0 -7
  606. data/spec/rspec/core/filter/core/unsupported/example_group.txt +0 -13
  607. data/spec/rspec/core/filter/core/unsupported/filter_manager.txt +0 -7
  608. data/spec/rspec/core/filter/core/unsupported/formatters.txt +0 -27
  609. data/spec/rspec/core/filter/core/unsupported/hooks.txt +0 -2
  610. data/spec/rspec/core/filter/core/unsupported/memoized_helpers.txt +0 -6
  611. data/spec/rspec/core/filter/core/unsupported/metadata.txt +0 -14
  612. data/spec/rspec/core/filter/core/unsupported/notifications.txt +0 -8
  613. data/spec/rspec/core/filter/core/unsupported/world.txt +0 -3
  614. data/spec/rspec/core/fixes/missing_constants.rb +0 -20
  615. data/spec/rspec/core/spec_files_exclude.txt +0 -41
  616. data/spec/rspec/expectations/config.rb +0 -21
  617. data/spec/rspec/expectations/config.ru +0 -4
  618. data/spec/rspec/expectations/expectation_spec_loader.rb +0 -110
  619. data/spec/rspec/expectations/filter/bugs/aliased_matcher.txt +0 -2
  620. data/spec/rspec/expectations/filter/bugs/base_matcher.txt +0 -2
  621. data/spec/rspec/expectations/filter/bugs/be_spec.txt +0 -2
  622. data/spec/rspec/expectations/filter/bugs/configuration.txt +0 -5
  623. data/spec/rspec/expectations/filter/bugs/contain_exactly.rb +0 -8
  624. data/spec/rspec/expectations/filter/bugs/define_negated_matcher.rb +0 -8
  625. data/spec/rspec/expectations/filter/bugs/dsl.rb +0 -15
  626. data/spec/rspec/expectations/filter/bugs/equal.txt +0 -3
  627. data/spec/rspec/expectations/filter/bugs/expectation_target.rb +0 -4
  628. data/spec/rspec/expectations/filter/bugs/expectations.rb +0 -4
  629. data/spec/rspec/expectations/filter/bugs/operators.txt +0 -2
  630. data/spec/rspec/expectations/filter/bugs/raise_error.txt +0 -2
  631. data/spec/rspec/expectations/filter/bugs/respond_to.rb +0 -7
  632. data/spec/rspec/expectations/filter/bugs/sandbox/undef.rb +0 -20
  633. data/spec/rspec/expectations/filter/unsupported/aliases.txt +0 -5
  634. data/spec/rspec/expectations/filter/unsupported/be.txt +0 -2
  635. data/spec/rspec/expectations/filter/unsupported/be_instance_of.txt +0 -3
  636. data/spec/rspec/expectations/filter/unsupported/change.txt +0 -2
  637. data/spec/rspec/expectations/filter/unsupported/configuration.txt +0 -2
  638. data/spec/rspec/expectations/filter/unsupported/contain_exactly.txt +0 -2
  639. data/spec/rspec/expectations/filter/unsupported/description_generation.txt +0 -6
  640. data/spec/rspec/expectations/filter/unsupported/dsl.rb +0 -10
  641. data/spec/rspec/expectations/filter/unsupported/eq.txt +0 -10
  642. data/spec/rspec/expectations/filter/unsupported/equal.txt +0 -3
  643. data/spec/rspec/expectations/filter/unsupported/expectation_target.txt +0 -2
  644. data/spec/rspec/expectations/filter/unsupported/expectations.txt +0 -8
  645. data/spec/rspec/expectations/filter/unsupported/has.txt +0 -2
  646. data/spec/rspec/expectations/filter/unsupported/include.txt +0 -3
  647. data/spec/rspec/expectations/filter/unsupported/match.txt +0 -2
  648. data/spec/rspec/expectations/filter/unsupported/matchers.txt +0 -11
  649. data/spec/rspec/expectations/filter/unsupported/output.txt +0 -14
  650. data/spec/rspec/expectations/filter/unsupported/raise_error.txt +0 -3
  651. data/spec/rspec/expectations/filter/unsupported/syntax.txt +0 -3
  652. data/spec/rspec/expectations/filter/unsupported/yield.txt +0 -2
  653. data/spec/rspec/expectations/fixes/example_patches.rb +0 -15
  654. data/spec/rspec/expectations/fixes/missing_constants.rb +0 -12
  655. data/spec/rspec/expectations/require_specs.rb +0 -15
  656. data/spec/rspec/expectations/shared_examples.rb +0 -47
  657. data/spec/rspec/expectations/spec_helper_opal.rb +0 -13
  658. data/spec/rspec/filter_processor.rb +0 -93
  659. data/spec/rspec/mocks/config.ru +0 -4
  660. data/spec/rspec/mocks/filter/bugs/and_call_original.rb +0 -11
  661. data/spec/rspec/mocks/filter/bugs/and_wrap_original.txt +0 -2
  662. data/spec/rspec/mocks/filter/bugs/and_yield.rb +0 -4
  663. data/spec/rspec/mocks/filter/bugs/any_instance.rb +0 -18
  664. data/spec/rspec/mocks/filter/bugs/configuration.txt +0 -2
  665. data/spec/rspec/mocks/filter/bugs/expiration.txt +0 -2
  666. data/spec/rspec/mocks/filter/bugs/instance_method_stasher.txt +0 -2
  667. data/spec/rspec/mocks/filter/bugs/mocks.txt +0 -6
  668. data/spec/rspec/mocks/filter/bugs/mutate_const.txt +0 -2
  669. data/spec/rspec/mocks/filter/bugs/partial_double.rb +0 -7
  670. data/spec/rspec/mocks/filter/bugs/receive.rb +0 -7
  671. data/spec/rspec/mocks/filter/bugs/should_syntax.txt +0 -5
  672. data/spec/rspec/mocks/filter/bugs/space.txt +0 -2
  673. data/spec/rspec/mocks/filter/bugs/spy.txt +0 -5
  674. data/spec/rspec/mocks/filter/bugs/stub_implementation.rb +0 -5
  675. data/spec/rspec/mocks/filter/unsupported/and_call_original.rb +0 -7
  676. data/spec/rspec/mocks/filter/unsupported/and_return.rb +0 -4
  677. data/spec/rspec/mocks/filter/unsupported/any_instance.rb +0 -6
  678. data/spec/rspec/mocks/filter/unsupported/argument_matchers.rb +0 -7
  679. data/spec/rspec/mocks/filter/unsupported/combining_implementation_instructions.rb +0 -4
  680. data/spec/rspec/mocks/filter/unsupported/double.rb +0 -13
  681. data/spec/rspec/mocks/filter/unsupported/have_received.txt +0 -2
  682. data/spec/rspec/mocks/filter/unsupported/instance_double_with_class_loaded.rb +0 -10
  683. data/spec/rspec/mocks/filter/unsupported/mocks.rb +0 -8
  684. data/spec/rspec/mocks/filter/unsupported/nil_expectation_warning.rb +0 -4
  685. data/spec/rspec/mocks/filter/unsupported/partial_double.rb +0 -4
  686. data/spec/rspec/mocks/filter/unsupported/receive.txt +0 -13
  687. data/spec/rspec/mocks/filter/unsupported/receive_messages.txt +0 -2
  688. data/spec/rspec/mocks/filter/unsupported/should_syntax.txt +0 -1
  689. data/spec/rspec/mocks/filter/unsupported/space.rb +0 -7
  690. data/spec/rspec/mocks/fixes/doubled_classes.rb +0 -76
  691. data/spec/rspec/mocks/mocks_spec_loader.rb +0 -91
  692. data/spec/rspec/mocks/require_specs.rb +0 -14
  693. data/spec/rspec/mocks/spec_helper_opal.rb +0 -131
  694. data/spec/rspec/opal_rspec_spec_loader.rb +0 -371
  695. data/spec/rspec/shared/opal/fixes/deprecation_helpers.rb +0 -31
  696. data/spec/rspec/shared/opal/fixes/rspec_helpers.rb +0 -6
  697. data/spec/rspec/shared/opal/separator_formatter.rb +0 -14
  698. data/spec/rspec/support/config.rb +0 -5
  699. data/spec/rspec/support/config.ru +0 -4
  700. data/spec/rspec/support/filter/bugs/recursive_const_methods.txt +0 -3
  701. data/spec/rspec/support/filter/bugs/sandbox/basic_object.rb +0 -30
  702. data/spec/rspec/support/filter/bugs/stderr_splitter_spec.txt +0 -2
  703. data/spec/rspec/support/filter/bugs/support.txt +0 -2
  704. data/spec/rspec/support/filter/unsupported/fuzzy_matcher.rb +0 -4
  705. data/spec/rspec/support/filter/unsupported/support.rb +0 -4
  706. data/spec/rspec/support/filter/unsupported/warnings.txt +0 -6
  707. data/spec/rspec/support/fixes/missing_constants.rb +0 -3
  708. data/spec/rspec/support/require_specs.rb +0 -14
  709. data/spec/rspec/support/spec_helper.rb +0 -27
  710. data/spec/rspec/support/support_spec_loader.rb +0 -38
@@ -0,0 +1,211 @@
1
+ require 'opal_filters'
2
+
3
+ OpalFilters.group("Bugs: Backtrace") do
4
+ fails "RSpec::Core::World#preceding_declaration_line (again) with one example returns the argument line number if an example starts on that line", "expected: 1"
5
+ fails "RSpec::Core::World#preceding_declaration_line (again) with one example returns line number of an example that immediately precedes the argument line", "expected: 1"
6
+ end
7
+
8
+ OpalFilters.group("Unsupported") do
9
+ # fails "RSpec::Core::ExampleGroup minimizes the number of methods that users could inadvertantly overwrite", "extra method coming from opal"
10
+ # fails 'RSpec::Core::FilterManager#prune prefers location to exclusion filter', 'unsupported source location'
11
+ # fails 'RSpec::Core::FilterManager#prune prefers location to exclusion filter on entire group', 'unsupported source location'
12
+ # fails 'RSpec::Core::FilterManager#inclusions#description cleans up the description', 'expects Proc#inspect to include source location'
13
+ # fails 'RSpec::Core::FilterManager#exclusions#description cleans up the description', 'expects Proc#inspect to include source location'
14
+ end
15
+
16
+ OpalFilters.group("Bugs") do
17
+ fails "RSpec::Core::Notifications::FailedExampleNotification uses the default color for the shared example backtrace line", "expected [\"\\e[31mFailure/Error: Unable to find matching line from backtrace\\e[0m\", \"\\e[31m \\e[0m\", \"\\e[31m expected: 2\\e[0m\", \"\\e[31m got: 1\\e[0m\", \"\\e[31m \\e[0m\", \"\\e[31m (compared using ==)\\e[0m\", \"\\e[31m\\e[37mShared Example Group: \\\"a\\\" called from \\e[0m\\e[0m\"] to include (match \"\\\\e\\\\[37mShared Example Group:\")"
18
+ fails "FailedExampleNotification #read_failed_line when ruby reports a bogus line number in the stack trace reports the filename and that it was unable to find the matching line", "expected \"Unable to find /Users/elia/Code/opal-rspec/rspec-core/spec/rspec/core/notifications_spec to read failed line\" to include \"Unable to find matching line\""
19
+ fails "FailedExampleNotification #read_failed_line when String alias to_int to_i doesn't hang when file exists", "\nexpected: \"let(:exception) { instance_double(Exception, :backtrace => [ \\\"\\\#{__FILE__}:\\\#{__LINE__}\\\"]) }\"\n got: \"Unable to find /Users/elia/Code/opal-rspec/rspec-core/spec/rspec/core/notifications_spec to read failed line\"\n\n(compared using eql?)\n"
20
+ fails "FailedExampleNotification #message_lines should return failure_lines without color", "could not find current class for super()"
21
+ fails "FailedExampleNotification #message_lines returns failures_lines without color when they are part of a shared example group", "could not find current class for super()"
22
+
23
+ fails "RSpec::Core::Example when there is no explicit description when RSpec.configuration.format_docstrings is set to a block formats the description using the block", "expected \"EXAMPLE AT \" to match /EXAMPLE AT \\/VAR\\/FOLDERS\\/W0\\/YJFQR9N94LD7FT4J3HLZ_FSM0000GN\\/T\\/D20170924-23861-ZF96QT\\/EXAMPLE_SPEC:70/"
24
+ fails "RSpec::Core::Example when there is no explicit description when `expect_with :rspec` is configured uses the file and line number if there is no matcher-generated description", "expected \"example at \" to match /example at \\/var\\/folders\\/w0\\/yjfqr9n94ld7ft4j3hlz_fsm0000gn\\/T\\/d20170924-23861-zf96qt\\/example_spec:93/"
25
+ fails "RSpec::Core::Example when there is no explicit description when `expect_with :rspec` is configured uses the file and line number if there is an error before the matcher", "expected \"example at \" to match /example at \\/var\\/folders\\/w0\\/yjfqr9n94ld7ft4j3hlz_fsm0000gn\\/T\\/d20170924-23861-zf96qt\\/example_spec:99/"
26
+ fails "RSpec::Core::Example when there is no explicit description when `expect_with :rspec` is configured if the example is pending uses the file and line number of the example if no matcher ran", "expected \"example at \" to match /example at \\/var\\/folders\\/w0\\/yjfqr9n94ld7ft4j3hlz_fsm0000gn\\/T\\/d20170924-23861-zf96qt\\/example_spec:113/"
27
+ fails "RSpec::Core::Example when there is no explicit description when `expect_with :rspec, :stdlib` is configured uses the file and line number if there is no matcher-generated description", "expected \"example at \" to match /example at \\/var\\/folders\\/w0\\/yjfqr9n94ld7ft4j3hlz_fsm0000gn\\/T\\/d20170924-23861-zf96qt\\/example_spec:130/"
28
+ fails "RSpec::Core::Example when there is no explicit description when `expect_with :rspec, :stdlib` is configured uses the file and line number if there is an error before the matcher", "expected \"example at \" to match /example at \\/var\\/folders\\/w0\\/yjfqr9n94ld7ft4j3hlz_fsm0000gn\\/T\\/d20170924-23861-zf96qt\\/example_spec:136/"
29
+ fails "RSpec::Core::Example when there is no explicit description when `expect_with :stdlib` is configured uses the file and line number", "expected \"example at \" to match /example at \\/var\\/folders\\/w0\\/yjfqr9n94ld7ft4j3hlz_fsm0000gn\\/T\\/d20170924-23861-zf96qt\\/example_spec:153/"
30
+ fails "RSpec::Core::Example#run when the example raises an error leaves a raised exception unmodified (GH-1103)", "undefined method `set_backtrace' for #<StandardError: StandardError>:StandardError"
31
+ fails "RSpec::Core::Example#pending in the example sets the backtrace to the example definition so it can be located by the user", "\nexpected: [\"/var/folders/w0/yjfqr9n94ld7ft4j3hlz_fsm0000gn/T/d20170924-23861-zf96qt/example_spec\", \"447\"]\n got: [\"PendingExampleFixedError\", \" Expected example to fail since it is pending, but it passed.\"]\n\n(compared using ==)\n"
32
+
33
+ fails "RSpec::Core::ExampleGroup constant naming disambiguates name collisions by appending a number", "expected RSpec::ExampleGroups::Collisioo_0 to have class const \"Collision_10\""
34
+ fails "RSpec::Core::ExampleGroup ordering when tagged with an unrecognized ordering prints a warning so users are notified of their mistake", "expected \"WARNING: Ignoring unknown ordering specified using `:order => \\\"unrecognized\\\"` metadata.\\n Falling back to configured global ordering.\\n Unrecognized ordering specified at: \\n\" to match /example_group_spec:182/"
35
+ fails "RSpec::Core::ExampleGroup#metadata adds the the file_path to metadata", "\nexpected: \"/Users/elia/Code/opal-rspec/rspec-core/spec/rspec/core/example_group_spec\"\n got: \"\"\n\n(compared using ==)\n"
36
+ fails "RSpec::Core::ExampleGroup#metadata has a reader for file_path", "\nexpected: \"/Users/elia/Code/opal-rspec/rspec-core/spec/rspec/core/example_group_spec\"\n got: \"\"\n\n(compared using ==)\n"
37
+ fails "RSpec::Core::ExampleGroup#metadata adds the line_number to metadata", "\nexpected: 610\n got: -1\n\n(compared using ==)\n"
38
+ fails "RSpec::Core::ExampleGroup.pending sets the backtrace to the example definition so it can be located by the user", "\nexpected: [\"/Users/elia/Code/opal-rspec/rspec-core/spec/rspec/core/example_group_spec\", \"946\"]\n got: [\"PendingExampleFixedError\", \" Expected example to fail since it is pending, but it passed.\"]\n\n(compared using ==)\n"
39
+
40
+ fails "RSpec::Core::ExampleGroup minimizes the number of methods that users could inadvertantly overwrite", "expected collection contained: [\"described_class\", \"is_expected\", \"pending\", \"setup_mocks_for_rspec\""
41
+ fails "RSpec::Core::FilterManager#prune prefers location to exclusion filter", "expected: [#<RSpec::Core::Example:0x126c4>]"
42
+ fails "RSpec::Core::FilterManager#prune prefers location to exclusion filter on entire group", "expected: [#<RSpec::Core::Example:0x127aa>]"
43
+ fails "RSpec::Core::FilterManager#inclusions#description cleans up the description", "expected \"#<Proc:0x130e6>\" to include \"/Users/elia/Code/opal-rspec\""
44
+ fails "RSpec::Core::FilterManager#exclusions#description cleans up the description", "expected \"#<Proc:0x1317a>\" to include \"/Users/elia/Code/opal-rspec\""
45
+ fails "RSpec::Core::Formatters::BaseTextFormatter when closing the formatter does not close an already closed output stream", "undefined method `mktmpdir' for Dir"
46
+ fails "RSpec::Core::Formatters::BaseTextFormatter#dump_summary includes command to re-run each failed example", "expected \"\\nFinished in 1 second (files took 0 seconds to load)\\n1 example, 1 failure\\n\\nFilter faile"
47
+ fails "RSpec::Core::Formatters::BaseTextFormatter#dump_failures with an exception that has a differently encoded message runs without encountering an encoding exception", "expected \"\\nFailures:\\n\\n 1) group name Mixing encodings, e.g. UTF-8: © and Binary\\n Failure/Err"
48
+ fails "RSpec::Core::Formatters::BaseTextFormatter#dump_failures with a failed expectation (rspec-expectations) does not show the error class", "expected \"\\nFailures:\\n\\n 1) group name example name\\n Failure/Error: Unable to find matching li"
49
+ fails "RSpec::Core::Formatters::BaseTextFormatter#dump_failures with a failed message expectation (rspec-mocks) does not show the error class", "expected \"\\nFailures:\\n\\n 1) group name example name\\n Failure/Error: Unable to find matching li"
50
+ fails "RSpec::Core::Formatters::BaseTextFormatter#dump_failures for #shared_examples outputs the name and location", "expected \"\\nFailures:\\n\\n 1) group name it should behave like foo bar example name\\n Failure/Err"
51
+ fails "RSpec::Core::Formatters::BaseTextFormatter#dump_failures for #shared_examples that contains nested example groups outputs the name and location", "expected \"\\nFailures:\\n\\n 1) group name it should behave like foo bar nested group example name\\n "
52
+
53
+ fails "rspec warnings and deprecations #deprecate passes the hash to the reporter", "undefined method `deprecate' for RSpec"
54
+ fails "rspec warnings and deprecations #deprecate adds the call site", "undefined method `deprecate' for RSpec"
55
+ fails "rspec warnings and deprecations #deprecate doesn't override a passed call site", "undefined method `deprecate' for RSpec"
56
+ fails "rspec warnings and deprecations #warn_with when :use_spec_location_as_call_site => true is passed adds the source location of spec", "Kernel received \"warn\" with unexpected arguments"
57
+ fails "rspec warnings and deprecations #warn_with when :use_spec_location_as_call_site => true is passed appends a period to the supplied message if one is not present", "Kernel received \"warn\" with unexpected arguments"
58
+
59
+ fails "RSpec::Core::Hooks when an error happens in `after(:suite)` allows the error to propagate to the user", "expected ZeroDivisionError but nothing was raised"
60
+ fails "RSpec::Core::Hooks when an error happens in `before(:suite)` allows the error to propagate to the user", "expected ZeroDivisionError but nothing was raised"
61
+ fails "RSpec::Core::Hooks#around does not consider the hook to have run when passed as a block to a method that does not yield", "expected: \"pending\""
62
+ fails "RSpec::Core::Hooks#around when it does not run the example indicates which around hook did not run the example in the pending message", "expected: \"around hook at /Users/elia/Code/opal-rspec/rspec-core/spec/rspec/core/hooks_spec:143 did n"
63
+ fails "RSpec::Core::Hooks#around when it does not run the example for a hook declared in the group converts the example to a skipped example so the user is made aware of it", "expected: \"pending\""
64
+ fails "RSpec::Core::Hooks#around when it does not run the example for a hook declared in config converts the example to a skipped example so the user is made aware of it", "expected: \"pending\""
65
+ fails "RSpec::Core::Metadata.relative_path transforms absolute paths to relative paths", "expected: \".\""
66
+ fails "RSpec::Core::Metadata for an example extracts file path from caller", "expected {\"execution_result\"=>#<RSpec::Core::Example::ExecutionResult:0x1d280>, \"block\"=>nil, \"descri"
67
+ fails "RSpec::Core::Metadata for an example extracts line number from caller", "expected {\"execution_result\"=>#<RSpec::Core::Example::ExecutionResult:0x1d350>, \"block\"=>nil, \"descri"
68
+ fails "RSpec::Core::Metadata for an example extracts location from caller", "expected {\"execution_result\"=>#<RSpec::Core::Example::ExecutionResult:0x1d420>, \"block\"=>nil, \"descri"
69
+ fails "RSpec::Core::Metadata :described_class in an outer group with a Symbol returns the symbol", "expected #<String:group> => \"group\""
70
+ fails "RSpec::Core::Metadata :description on a group with a non-string and a string concats the args", "expected: \"Object group\""
71
+ fails "RSpec::Core::Metadata :full_description with a 2nd arg starting with # removes the space", "expected: \"Array#method\""
72
+ fails "RSpec::Core::Metadata :full_description with a 2nd arg starting with . removes the space", "expected: \"Array.method\""
73
+ fails "RSpec::Core::Metadata :full_description with a 2nd arg starting with :: removes the space", "expected: \"Array::method\""
74
+ fails "RSpec::Core::Metadata :file_path finds the first non-rspec lib file in the caller array", "expected: \"/Users/elia/Code/opal-rspec/rspec-core/spec/rspec/core/metadata_spec\""
75
+ fails "RSpec::Core::Metadata :line_number finds the line number with the first non-rspec lib file in the backtrace", "expected: 418"
76
+ fails "RSpec::Core::Metadata backwards compatibility :example_group issues a deprecation warning when the `:example_group` key is accessed", "undefined method `deprecate' for RSpec"
77
+ fails "RSpec::Core::Metadata backwards compatibility :example_group does not issue a deprecation warning when :example_group is accessed while applying configured filterings", "undefined method `deprecate' for RSpec"
78
+ fails "RSpec::Core::Metadata backwards compatibility :example_group can still access the example group attributes via [:example_group]", "undefined method `deprecate' for RSpec"
79
+ fails "RSpec::Core::Metadata backwards compatibility :example_group can access the parent example group attributes via [:example_group][:example_group]", "undefined method `deprecate' for RSpec"
80
+ fails "RSpec::Core::Metadata backwards compatibility :example_group works properly with deep nesting", "undefined method `deprecate' for RSpec"
81
+ fails "RSpec::Core::Metadata backwards compatibility :example_group works properly with shallow nesting", "undefined method `deprecate' for RSpec"
82
+ fails "RSpec::Core::Metadata backwards compatibility :example_group allows integration libraries like VCR to infer a fixture name from the example description by walking up nesting structure", "undefined method `deprecate' for RSpec"
83
+ fails "RSpec::Core::Metadata backwards compatibility :example_group can mutate attributes when accessing them via [:example_group]", "undefined method `deprecate' for RSpec"
84
+ fails "RSpec::Core::Metadata backwards compatibility :example_group can still be filtered via a nested key under [:example_group] as before", "expected true"
85
+ fails "RSpec::Core::Metadata backwards compatibility :example_group_block returns the block", "undefined method `deprecate' for RSpec"
86
+ fails "RSpec::Core::Metadata backwards compatibility :example_group_block issues a deprecation warning", "undefined method `deprecate' for RSpec"
87
+ fails "RSpec::Core::Metadata backwards compatibility :describes on an example group metadata hash returns the described_class", "undefined method `deprecate' for RSpec"
88
+ fails "RSpec::Core::Metadata backwards compatibility :describes on an example group metadata hash issues a deprecation warning", "undefined method `deprecate' for RSpec"
89
+ fails "RSpec::Core::Metadata backwards compatibility :describes an an example metadata hash returns the described_class", "undefined method `deprecate' for RSpec"
90
+ fails "RSpec::Core::Metadata backwards compatibility :describes an an example metadata hash issues a deprecation warning", "undefined method `deprecate' for RSpec"
91
+
92
+ fails "an example declared pending with metadata uses the value assigned to :pending as the message", "undefined method `deprecate' for RSpec"
93
+ fails "an example declared pending with metadata sets the message to 'No reason given' if :pending => true", "undefined method `deprecate' for RSpec"
94
+ fails "an example declared pending with metadata passes if a mock expectation is not satisifed", "undefined method `deprecate' for RSpec"
95
+ fails "an example made pending with `define_derived_metadata` has a pending result if there is an error", "undefined method `deprecate' for RSpec"
96
+ fails "an example with no block is listed as pending with 'Not yet implemented'", "undefined method `deprecate' for RSpec"
97
+ fails "an example with no args is listed as pending with the default message", "undefined method `deprecate' for RSpec"
98
+ fails "an example with a message is listed as pending with the supplied message", "undefined method `deprecate' for RSpec"
99
+ fails "an example with a block fails with an ArgumentError stating the syntax is deprecated", "undefined method `deprecate' for RSpec"
100
+
101
+ fails "RSpec::Core::MemoizedHelpers explicit subject defined in a top level group raises an error when referenced from `before(:all)`", "expected \"subject accessed in a `before(:context)` hook at:\\n \\n\\n`let` and `subject` declarations a"
102
+ fails "RSpec::Core::MemoizedHelpers explicit subject defined in a top level group raises an error when referenced from `after(:all)`", "expected \"subject accessed in an `after(:context)` hook at:\\n \\n\\n`let` and `subject` declarations a"
103
+ fails "RSpec::Core::MemoizedHelpers explicit subject with a name when `super` is used raises a \"not supported\" error", "expected: \"failed\""
104
+ fails "RSpec::Core::MemoizedHelpers explicit subject with a name when `super` is used with a `let` definition before the named subject raises a \"not supported\" error", "expected: \"failed\""
105
+ fails "#let raises an error when referenced from `before(:all)`", "expected \"let declaration `foo` accessed in a `before(:context)` hook at:\\n \\n\\n`let` and `subject` "
106
+ fails "#let raises an error when referenced from `after(:all)`", "expected \"let declaration `foo` accessed in an `after(:context)` hook at:\\n \\n\\n`let` and `subject` "
107
+ fails "Module#define_method is still a private method", "expected NoMethodError but nothing was raised"
108
+
109
+ fails "RSpec::Core::Formatters::JsonFormatter outputs json (brittle high level functional test)", "expected: {\"examples\"=>[{\"description\"=>\"succeeds\", \"full_description\"=>\"one apiece succeeds\", \"statu"
110
+ fails "RSpec::Core::Formatters::JsonFormatter#dump_profile with multiple example groups provides the slowest example groups", "could not find current class for super()"
111
+ fails "RSpec::Core::Formatters::JsonFormatter#dump_profile with multiple example groups provides information", "could not find current class for super()"
112
+ fails "RSpec::Core::Formatters::JsonFormatter#dump_profile with multiple example groups ranks the example groups by average time", "could not find current class for super()"
113
+
114
+ fails "RSpec::Core::Formatters::Loader#add(formatter) when a legacy formatter is added with RSpec::LegacyFormatters loads formatters from the external gem", "could not find current class for super()"
115
+ fails "RSpec::Core::Formatters::Loader#add(formatter) when a legacy formatter is added with RSpec::LegacyFormatters subscribes the formatter to the notifications the adaptor implements", "could not find current class for super()"
116
+ fails "RSpec::Core::Formatters::Loader#add(formatter) with a 2nd arg defining the output creates a file at that path and sets it as the output", "undefined method `tmpdir' for Dir"
117
+ fails "RSpec::Core::Formatters::Loader#add(formatter) with a 2nd arg defining the output accepts Pathname objects for file paths", "undefined method `tmpdir' for Dir"
118
+ fails "RSpec::Core::Formatters::Loader#add(formatter) when a duplicate formatter exists adds the formatter for different output targets", "undefined method `tmpdir' for Dir"
119
+
120
+ fails "RSpec::Core::Formatters::DeprecationFormatter#deprecation with a File deprecation_stream prints a message if provided, ignoring other data", "undefined method `tmpdir' for Dir"
121
+ fails "RSpec::Core::Formatters::DeprecationFormatter#deprecation with a File deprecation_stream surrounds multiline messages in fenceposts", "undefined method `tmpdir' for Dir"
122
+ fails "RSpec::Core::Formatters::DeprecationFormatter#deprecation with a File deprecation_stream includes the method", "undefined method `tmpdir' for Dir"
123
+ fails "RSpec::Core::Formatters::DeprecationFormatter#deprecation with a File deprecation_stream includes the replacement", "undefined method `tmpdir' for Dir"
124
+ fails "RSpec::Core::Formatters::DeprecationFormatter#deprecation with a File deprecation_stream includes the call site if provided", "undefined method `tmpdir' for Dir"
125
+ fails "RSpec::Core::Formatters::DeprecationFormatter#deprecation_summary with a File deprecation_stream prints a count of the deprecations", "undefined method `tmpdir' for Dir"
126
+ fails "RSpec::Core::Formatters::DeprecationFormatter#deprecation_summary with a File deprecation_stream pluralizes the reported deprecation count for more than one deprecation", "undefined method `tmpdir' for Dir"
127
+ fails "RSpec::Core::Formatters::DeprecationFormatter#deprecation_summary with a File deprecation_stream is not printed when there are no deprecations", "undefined method `tmpdir' for Dir"
128
+ fails "RSpec::Core::Formatters::DeprecationFormatter#deprecation_summary with a File deprecation_stream uses synchronized/non-buffered output to work around odd duplicate output behavior we have observed", "undefined method `tmpdir' for Dir"
129
+ fails "RSpec::Core::Formatters::DeprecationFormatter#deprecation_summary with a File deprecation_stream does not print duplicate messages", "undefined method `tmpdir' for Dir"
130
+
131
+ fails "RSpec::Core::Formatters::ProgressFormatter produces the expected full output", "String#gsub! not supported. Mutable String methods are not supported in Opal."
132
+
133
+ fails "RSpec::Core::Formatters::DocumentationFormatter produces the expected full output", "String#gsub! not supported. Mutable String methods are not supported in Opal."
134
+
135
+ fails "RSpec loads mocks and expectations when the constants are referenced", "undefined method `run_ruby_with_current_load_path' for #<RSpec::ExampleGroups::RSpec:0x34620>"
136
+ fails "RSpec::Core.path_to_executable returns the absolute location of the exe/rspec file", "expected: truthy value"
137
+
138
+ fails "command line --order rand runs the examples and groups in a different order each time", "undefined method `write_file' for #<RSpec::ExampleGroups::CommandLine:0x697a>"
139
+ fails "command line --order rand:SEED runs the examples and groups in the same order each time", "undefined method `write_file' for #<RSpec::ExampleGroups::CommandLine:0x697a>"
140
+ fails "command line --seed SEED forces '--order rand' and runs the examples and groups in the same order each time", "undefined method `write_file' for #<RSpec::ExampleGroups::CommandLine:0x697a>"
141
+ fails "command line --seed SEED runs examples in the same order, regardless of the order in which files are given", "undefined method `write_file' for #<RSpec::ExampleGroups::CommandLine:0x697a>"
142
+ fails "command line --order defined on CLI with --order rand in .rspec overrides --order rand with --order defined", "undefined method `write_file' for #<RSpec::ExampleGroups::CommandLine:0x697a>"
143
+ fails "command line when a custom order is configured orders the groups and examples by the provided strategy", "undefined method `write_file' for #<RSpec::ExampleGroups::CommandLine:0x697a>"
144
+
145
+ fails "RSpec::Core::Formatters::ProfileFormatter#dump_profile with one example group it should behave like profiles examples names the example", "could not find current class for super()"
146
+ fails "RSpec::Core::Formatters::ProfileFormatter#dump_profile with one example group it should behave like profiles examples prints the time", "could not find current class for super()"
147
+ fails "RSpec::Core::Formatters::ProfileFormatter#dump_profile with one example group it should behave like profiles examples prints the path", "could not find current class for super()"
148
+ fails "RSpec::Core::Formatters::ProfileFormatter#dump_profile with one example group it should behave like profiles examples prints the percentage taken from the total runtime", "could not find current class for super()"
149
+ fails "RSpec::Core::Formatters::ProfileFormatter#dump_profile with one example group it should behave like profiles examples doesn't profile a single example group", "could not find current class for super()"
150
+ fails "RSpec::Core::Formatters::ProfileFormatter#dump_profile with multiple example groups prints the slowest example groups", "could not find current class for super()"
151
+ fails "RSpec::Core::Formatters::ProfileFormatter#dump_profile with multiple example groups prints the time", "could not find current class for super()"
152
+ fails "RSpec::Core::Formatters::ProfileFormatter#dump_profile with multiple example groups ranks the example groups by average time", "could not find current class for super()"
153
+
154
+ fails "RSpec::Core::Configuration#deprecation_stream when the reporter has already been initialized prints a notice indicating the reconfigured output_stream will be ignored", "#<RSpec::Core::Configuration:0x7d8e> received \"warn\" with unexpected arguments"
155
+ fails "RSpec::Core::Configuration#output_stream when the reporter has already been initialized prints a notice indicating the reconfigured output_stream will be ignored", "#<RSpec::Core::Configuration:0x81fe> received \"warn\" with unexpected arguments"
156
+ fails "RSpec::Core::Configuration#requires= adds `lib` to the load path", "expected [] to include \"/Users/elia/Code/opal-rspec/rspec-core/lib\""
157
+ fails "RSpec::Core::Configuration#requires= adds the configured `default_path` to the load path", "expected [] to include \"/Users/elia/Code/opal-rspec/rspec-core/features\""
158
+ fails "RSpec::Core::Configuration#requires= stores the required files", "expected: [\"a/path\"]"
159
+ fails "RSpec::Core::Configuration#mock_framework when rspec-mocks is not installed gracefully falls back to :nothing", "uninitialized constant RSpec::Core::MockingAdapters::Null"
160
+ fails "RSpec::Core::Configuration#mock_with uses the null adapter when given :nothing", "uninitialized constant RSpec::Core::MockingAdapters::Null"
161
+ fails "RSpec::Core::Configuration#files_to_run loads files not following pattern if named explicitly", "undefined method `assign_files_or_directories_to_run' for #<RSpec::ExampleGroups::RSpecCoreConfigurat"
162
+ fails "RSpec::Core::Configuration#files_to_run prevents repetition of dir when start of the pattern", "undefined method `assign_files_or_directories_to_run' for #<RSpec::ExampleGroups::RSpecCoreConfigurat"
163
+
164
+ fails "RSpec::Core::Configuration#files_to_run does not prevent repetition of dir when later of the pattern"
165
+ fails "RSpec::Core::Configuration#files_to_run supports patterns starting with ./"
166
+ fails "RSpec::Core::Configuration#files_to_run supports absolute path patterns"
167
+ fails "RSpec::Core::Configuration#files_to_run supports relative path patterns for an alternate directory from `spec`"
168
+ fails "RSpec::Core::Configuration#files_to_run reloads when `files_or_directories_to_run` is reassigned"
169
+ fails "RSpec::Core::Configuration#files_to_run attempts to load the provided file names"
170
+ fails "RSpec::Core::Configuration#files_to_run with <path>:<line_number> overrides inclusion filters set on config"
171
+ fails "RSpec::Core::Configuration#files_to_run with <path>:<line_number> overrides inclusion filters set before config"
172
+ fails "RSpec::Core::Configuration#files_to_run with <path>:<line_number> clears exclusion filters set on config"
173
+ fails "RSpec::Core::Configuration#files_to_run with default pattern loads files named _spec.rb"
174
+ fails "RSpec::Core::Configuration#files_to_run with default pattern behaves like handling symlinked directories when loading spec files finds the files"
175
+ fails "RSpec::Core::Configuration#files_to_run with default pattern behaves like handling symlinked directories when loading spec files works on a more complicated example (issue 1113)"
176
+ fails "RSpec::Core::Configuration#files_to_run with default default_path loads files in the default path when run by rspec"
177
+ fails "RSpec::Core::Configuration#files_to_run with default default_path loads files in the default path when run with DRB (e.g., spork)"
178
+ fails "RSpec::Core::Configuration#files_to_run when the given directories match the pattern orders the files in a consistent ordering, regardless of the underlying OS ordering"
179
+ fails "RSpec::Core::Configuration#files_to_run when the pattern is given relative to the given directories orders the files in a consistent ordering, regardless of the underlying OS ordering"
180
+ fails "RSpec::Core::Configuration#pattern with single pattern loads all explicitly specified files, even those that do not match the pattern"
181
+ fails "RSpec::Core::Configuration#pattern with single pattern loads files in directories following pattern"
182
+ fails "RSpec::Core::Configuration#pattern with single pattern ignores pattern if files are specified"
183
+ fails "RSpec::Core::Configuration#pattern with multiple patterns supports comma separated values"
184
+ fails "RSpec::Core::Configuration#pattern with multiple patterns supports comma separated values with spaces"
185
+ fails "RSpec::Core::Configuration#pattern with multiple patterns supports curly braces glob syntax"
186
+ fails "RSpec::Core::Configuration#pattern after `files_to_run` has been accessed but before files have been loaded still takes affect"
187
+ fails "RSpec::Core::Configuration#exclude_pattern with single pattern loads files in directories not following exclude pattern"
188
+ fails "RSpec::Core::Configuration#exclude_pattern with single pattern ignores exclude_pattern if files are specified"
189
+ fails "RSpec::Core::Configuration#exclude_pattern after files have already been loaded warns that it will have no effect"
190
+ fails "RSpec::Core::Configuration#exclude_pattern after `files_to_run` has been accessed but before files have been loaded still takes affect"
191
+ fails "RSpec::Core::Configuration path with line number assigns the line number as a location filter"
192
+ fails "RSpec::Core::Configuration with line number assigns the file and line number as a location filter"
193
+ fails "RSpec::Core::Configuration with line number assigns multiple files with line numbers as location filters"
194
+ fails "RSpec::Core::Configuration with line number assigns files with multiple line numbers as location filters"
195
+ fails "RSpec::Core::Configuration with multiple line numbers assigns the file and line numbers as a location filter"
196
+ fails "RSpec::Core::Configuration#color= given true on windows with ANSICON available enables colors"
197
+ fails "RSpec::Core::Configuration#color= given true on windows with ANSICON available leaves output stream intact"
198
+ fails "RSpec::Core::Configuration#color= given true on windows with ANSICON NOT available warns to install ANSICON"
199
+ fails "RSpec::Core::Configuration#color= given true on windows with ANSICON NOT available sets color to false"
200
+ fails "RSpec::Core::Configuration#force for ordering options CLI `--order rand:37` takes precedence over `config.order = defined`"
201
+ fails "RSpec::Core::Configuration#force for ordering options CLI `--seed 37` forces order and seed"
202
+ fails "RSpec::Core::Configuration#seed_used? returns false if neither ordering registry used the seed"
203
+ fails "RSpec::Core::Configuration#seed_used? returns true if the ordering registry used the seed"
204
+ fails "RSpec::Core::Configuration#warnings is loaded from config by #force"
205
+
206
+ require 'opal/version'
207
+ if Opal::VERSION == '0.11.1'
208
+ fails "RSpec::Core::Configuration assigns the example name as the filter on description"
209
+ fails "RSpec::Core::Configuration with full_description set is possible to access the full description regular expression"
210
+ end
211
+ end
@@ -0,0 +1,34 @@
1
+ def Dir.[](_glob)
2
+ []
3
+ end
4
+
5
+ def Dir.mktmpdir(*)
6
+ ''
7
+ end
8
+
9
+ module Aruba
10
+ module Api
11
+ end
12
+ end
13
+
14
+ # None of this is supported in Opal
15
+ module RSpec::Support::ShellOut
16
+ end
17
+
18
+ module MathnIntegrationSupport
19
+ def with_mathn_loaded
20
+ yield
21
+ end
22
+ end
23
+
24
+ class Shellwords
25
+ def self.split(string)
26
+ string.split(/\s+/)
27
+ end
28
+ end
29
+
30
+ class OptionParser
31
+ InvalidOption = Class.new(StandardError)
32
+ def parse!(_opts)
33
+ end
34
+ end
@@ -0,0 +1,6 @@
1
+ RSpec.shared_examples_for "a library that issues no warnings when loaded" do |*|
2
+ it('fails')
3
+ end
4
+ RSpec.shared_examples_for "spec files" do |*|
5
+ it('fails')
6
+ end
@@ -0,0 +1,41 @@
1
+ class ::RSpec::Core::Ordering::Random
2
+ # there are a lot of these in the RSpec specs that create noise
3
+ HIDE_RANDOM_WARNINGS = true
4
+ end
5
+
6
+ # dealing with dynamic requires
7
+ require 'rspec/support'
8
+ require 'rspec/support/spec/deprecation_helpers'
9
+ require 'rspec/support/spec/with_isolated_stderr'
10
+ require 'rspec/support/spec/stderr_splitter'
11
+ require 'rspec/support/spec/formatting_support'
12
+ require 'rspec/support/spec/with_isolated_directory'
13
+ require 'rspec/support/spec/in_sub_process'
14
+ require 'rspec/support/ruby_features'
15
+ require 'support/shared_example_groups'
16
+ require 'support/helper_methods'
17
+ require 'support/matchers'
18
+ require 'support/formatter_support'
19
+ require 'support/config_options_helper'
20
+ require 'fixes/sandboxing'
21
+ require 'fixes/missing_constants'
22
+ require 'fixes/shared_examples'
23
+ require 'rspec/support/spec'
24
+ require 'opal/fixes/deprecation_helpers'
25
+ require 'opal/fixes/rspec_helpers'
26
+ require 'filters'
27
+
28
+ module StubWriteFile
29
+ def write_file(filename, content)
30
+ # noop
31
+ end
32
+ end
33
+
34
+ RSpec.configure do |config|
35
+ #c.full_description = 'uses the default color for the shared example backtrace line'
36
+ config.add_formatter RSpec::Core::Formatters::JsonFormatter, '/tmp/rspec-core-results.json'
37
+ config.add_formatter RSpec::Core::Formatters::ProgressFormatter, $stdout
38
+ config.include StubWriteFile
39
+ config.filter_run_excluding type: :drb
40
+ config.filter_run_excluding isolated_directory: true
41
+ end
@@ -0,0 +1,188 @@
1
+ require 'opal_filters'
2
+
3
+ OpalFilters.group('Bugs') do
4
+ fails "#have_attributes matcher expect(...).to have_attributes(with_multiple_attributes) fails if target does not responds to any of the attributes"
5
+ fails "#have_attributes matcher expect(...).to have_attributes(with_multiple_attributes) fails if target responds to the attribute but requires arguments"
6
+ fails "#have_attributes matcher expect(...).to have_attributes(with_one_attribute) expect(...).to have_attributes(key => matcher) fails with a clear message when the matcher does not match"
7
+ fails "#have_attributes matcher expect(...).to have_attributes(with_one_attribute) expect(...).to have_attributes(key => matcher) provides a description"
8
+ fails "#have_attributes matcher expect(...).to have_attributes(with_one_attribute) fails if target does not responds to any of the attributes"
9
+ fails "#have_attributes matcher expect(...).to have_attributes(with_one_attribute) fails if target responds to the attribute but requires arguments"
10
+ fails "#have_attributes matcher expect(...).to_not have_attributes(with_multiple_attributes) fails if target does not responds to any of the attributes"
11
+ fails "#have_attributes matcher expect(...).to_not have_attributes(with_multiple_attributes) fails if target responds to the attribute but requires arguments"
12
+ fails "#have_attributes matcher expect(...).to_not have_attributes(with_one_attribute) fails if target does not responds to any of the attributes"
13
+ fails "#have_attributes matcher expect(...).to_not have_attributes(with_one_attribute) fails if target responds to the attribute but requires arguments"
14
+ fails "#include matcher Composing matchers with `include` expect(hash).to include(key => matcher) fails with a clear message when the matcher does not match"
15
+ fails "#include matcher Composing matchers with `include` expect(hash).to include(key => matcher) provides a description"
16
+ fails "#include matcher Composing matchers with `include` expect(hash).to include(key_matcher) fails with a clear message when the matcher does not match"
17
+ fails "#include matcher expect(...).not_to include(:key => value) for a hash target fails if target includes the key/value pair among others"
18
+ fails "#include matcher expect(...).not_to include(:key => value) for a hash target fails if target includes the key/value pair"
19
+ fails "#include matcher expect(...).not_to include(:key => value) for a non-hash target fails if the target contains the given hash"
20
+ fails "#include matcher expect(...).not_to include(expected) for a hash target fails if target includes expected key"
21
+ fails "#include matcher expect(...).not_to include(expected) for an arbitrary object that responds to `include?` delegates to `include?`"
22
+ fails "#include matcher expect(...).not_to include(with, multiple, args) for a hash target fails if the target includes all of the expected keys"
23
+ fails "#include matcher expect(...).not_to include(with, multiple, args) for a hash target fails if the target includes some (but not all) of the expected keys"
24
+ fails "#include matcher expect(...).to include(:key => value) for a hash target fails if target has a different key"
25
+ fails "#include matcher expect(...).to include(:key => value) for a hash target fails if target has a different value for key"
26
+ fails "#include matcher expect(...).to include(:key => value) for a non-hash target fails if the target does not contain the given hash"
27
+ fails "#include matcher expect(...).to include(with, multiple, args) for a hash target fails if target is missing any item as a key"
28
+ fails "#include matcher expect(...).to include(with_one_arg) for a hash target fails if target does not include expected"
29
+ fails "#include matcher expect(...).to include(with_one_arg) for a hash target fails if target doesn't have a key and we expect nil"
30
+ fails "#include matcher expect(...).to include(with_one_arg) for a string target includes a diff when actual is multiline and there are multiple expecteds"
31
+ fails "#include matcher expect(...).to include(with_one_arg) for a string target includes a diff when actual is multiline"
32
+ fails "#include matcher expect(...).to include(with_one_arg) for an arbitrary object that responds to `include?` delegates to `include?`"
33
+ fails "Composing matchers with `raise_error` expect { }.to raise_error(matcher) fails with a clear message when the matcher does not match the raised error"
34
+ fails "Composing matchers with `raise_error` expect { }.to raise_error(matcher) provides a description"
35
+ fails "Legacy matchers written using the RSpec 2.x `failure_message_for_should` and `failure_message_for_should_not` protocol behaves like a matcher written against a legacy protocol when matched negatively warns about the deprecated protocol"
36
+ fails "Legacy matchers written using the RSpec 2.x `failure_message_for_should` and `failure_message_for_should_not` protocol behaves like a matcher written against a legacy protocol when matched positively warns about the deprecated protocol"
37
+ fails "Legacy matchers written using the older `failure_message` and `negative_failure_message` protocol behaves like a matcher written against a legacy protocol when matched negatively warns about the deprecated protocol"
38
+ fails "Legacy matchers written using the older `failure_message` and `negative_failure_message` protocol behaves like a matcher written against a legacy protocol when matched positively warns about the deprecated protocol"
39
+ fails "Matchers should be able to generate their own descriptions expect(...).not_to eql"
40
+ fails "Matchers should be able to generate their own descriptions expect(...).to have_key"
41
+ fails "Matchers should be able to generate their own descriptions expect(...).to throw symbol (with named symbol)"
42
+ fails "Matchers should be able to generate their own descriptions expect(...).to throw symbol"
43
+ fails "RSpec::Expectations does not include the diff if expected and actual are not diffable"
44
+ fails "RSpec::Expectations includes a diff if expected and actual are diffable"
45
+ fails "RSpec::Expectations tells the differ to use color"
46
+ fails "RSpec::Expectations uses matcher descriptions in place of matchers in diffs"
47
+ fails "RSpec::Expectations::Configuration configuring rspec-expectations directly behaves like configuring the expectation syntax `:should` being enabled by default deprecation includes the call site in the deprecation warning by default"
48
+ fails "RSpec::Expectations::Configuration configuring rspec-expectations directly behaves like configuring the expectation syntax can limit the syntax to :expect"
49
+ fails "RSpec::Expectations::Configuration configuring rspec-expectations directly behaves like configuring the expectation syntax can limit the syntax to :should"
50
+ fails "RSpec::Expectations::Configuration configuring using the rspec-core config API behaves like configuring the expectation syntax `:should` being enabled by default deprecation includes the call site in the deprecation warning by default"
51
+ fails "RSpec::Expectations::Configuration configuring using the rspec-core config API behaves like configuring the expectation syntax can limit the syntax to :expect"
52
+ fails "RSpec::Expectations::Configuration configuring using the rspec-core config API behaves like configuring the expectation syntax can limit the syntax to :should"
53
+ fails "RSpec::Expectations::Configuration#backtrace_formatter defaults to a null formatter when rspec-core is not loaded"
54
+ fails "RSpec::Expectations::Configuration#backtrace_formatter defaults to rspec-core's backtrace formatter when rspec-core is loaded"
55
+ fails "RSpec::Expectations::ExpectationTarget when constructed via #expect fails an invalid negative expectation with a split infinitive"
56
+ fails "RSpec::Expectations::ExpectationTarget when constructed via #expect fails an invalid negative expectation"
57
+ fails "RSpec::Expectations::Syntax when passing a message to an expectation expect(...).not_to prints a warning when the message object isn't a String"
58
+ fails "RSpec::Expectations::Syntax when passing a message to an expectation expect(...).to prints a warning when the message object isn't a String"
59
+ fails "RSpec::Matchers should have an alias for \"have attributes {\\\"age\\\" => 32}\" with description: \"an object having attributes {:age => 32}\""
60
+ fails "RSpec::Matchers should have an alias for \"include {\\\"a\\\" => 5}\" with description: \"a hash including {:a => 5}\""
61
+ fails "RSpec::Matchers should have an alias for \"throw foo\" with description: \"a block throwing :foo\""
62
+ fails 'RSpec::Matchers should have an alias for "throw foo" with description: "throwing :foo"'
63
+ fails "RSpec::Matchers::AliasedMatcher can get a method object for delegated methods"
64
+ fails "RSpec::Matchers::BuiltIn::ThrowSymbol composing with other matchers fails when the matcher does not match the thrown arg"
65
+ fails "RSpec::Matchers::BuiltIn::ThrowSymbol composing with other matchers provides a description"
66
+ fails "RSpec::Matchers::BuiltIn::ThrowSymbol with a symbol and an arg does not match if no arg is thrown"
67
+ fails "RSpec::Matchers::BuiltIn::ThrowSymbol with a symbol and an arg does not match if other Symbol is thrown"
68
+ fails "RSpec::Matchers::BuiltIn::ThrowSymbol with a symbol and an arg does not match if wrong arg is thrown"
69
+ fails "RSpec::Matchers::BuiltIn::ThrowSymbol with a symbol and an arg provides a failure message when no Symbol is thrown"
70
+ fails "RSpec::Matchers::BuiltIn::ThrowSymbol with a symbol and an arg provides a failure message when no arg is thrown"
71
+ fails "RSpec::Matchers::BuiltIn::ThrowSymbol with a symbol and an arg provides a failure message when wrong Symbol is thrown"
72
+ fails "RSpec::Matchers::BuiltIn::ThrowSymbol with a symbol and an arg provides a failure message when wrong arg is thrown"
73
+ fails "RSpec::Matchers::BuiltIn::ThrowSymbol with a symbol and an arg provides a negative failure message"
74
+ fails "RSpec::Matchers::BuiltIn::ThrowSymbol with a symbol does not match if correct Symbol is thrown"
75
+ fails "RSpec::Matchers::BuiltIn::ThrowSymbol with a symbol provides a failure message when no Symbol is thrown"
76
+ fails "RSpec::Matchers::BuiltIn::ThrowSymbol with a symbol provides a failure message when wrong Symbol is thrown"
77
+ fails "RSpec::Matchers::BuiltIn::ThrowSymbol with a symbol provides a negative failure message"
78
+ fails "RSpec::Matchers::BuiltIn::ThrowSymbol with no args matches if any Symbol is thrown with an arg"
79
+ fails "RSpec::Matchers::BuiltIn::ThrowSymbol with no args matches if any Symbol is thrown"
80
+ fails "RSpec::Matchers::BuiltIn::ThrowSymbol with no args provides a negative failure message"
81
+ fails "RSpec::Matchers::DSL::Matcher defined using the dsl can get a method object for methods in the running example"
82
+ fails "RSpec::Matchers::DSL::Matcher defined using the dsl raises NoMethodError for methods not in the running_example"
83
+ fails "RSpec::Matchers::DSL::Matcher handles multiline string diffs"
84
+ fails "RSpec::Matchers::DSL::Matcher using deprecated APIs failure_message_for_should defines the failure message for a positive expectation"
85
+ fails "RSpec::Matchers::DSL::Matcher using deprecated APIs failure_message_for_should prints a deprecation warning"
86
+ fails "RSpec::Matchers::DSL::Matcher using deprecated APIs failure_message_for_should_not defines the failure message for a negative expectation"
87
+ fails "RSpec::Matchers::DSL::Matcher using deprecated APIs failure_message_for_should_not prints a deprecation warning"
88
+ fails "RSpec::Matchers::DSL::Matcher using deprecated APIs match_for_should defines the positive expectation match logic"
89
+ fails "RSpec::Matchers::DSL::Matcher using deprecated APIs match_for_should prints a deprecation warning"
90
+ fails "RSpec::Matchers::DSL::Matcher using deprecated APIs match_for_should_not defines the positive expectation match logic"
91
+ fails "RSpec::Matchers::DSL::Matcher using deprecated APIs match_for_should_not prints a deprecation warning"
92
+ fails "RSpec::Matchers::DSL::Matcher wrapping another expectation (expect(...).to eq ...) can use the `include` matcher from a `match` block"
93
+ fails "RSpec::Support::StdErrSplitter will fail an example which generates a warning", "expected Exception with message matching /Warnings were generated:/ but nothing was raised"
94
+ fails "arbitrary predicate with DelegateClass accesses methods defined in the delegating class (LH[#48])"
95
+ fails "eq #description with \"symbol\" is \"eq :symbol\""
96
+ fails "eq #description with {\"foo\"=>\"bar\"} is \"eq {:foo=>:bar}\""
97
+ fails "eq Time Equality with DateTime objects fails with identical output when the DateTimes are exactly the same"
98
+ fails "eq Time Equality with DateTime objects produces different output for DateTimes differing by milliseconds"
99
+ fails "eq Time Equality with DateTime objects when ActiveSupport is loaded uses a custom format to ensure the output is different when DateTimes differ"
100
+ fails "eq Time Equality with Time objects produces different output for Times differing by milliseconds"
101
+ fails "eq with BigDecimal objects fails with a conventional representation of the decimal"
102
+ fails "equal does not match when !actual.equal?(expected)"
103
+ fails "equal suggests the `eq` matcher on failure"
104
+ fails "equal when the expected object is falsey in conditinal semantics describes itself with the expected object"
105
+ fails "expect { ... }.not_to raise_error with no specific error class includes the backtrace of the error that was raised in the error message"
106
+ fails "expect { ... }.to change(actual, message) with a string passes when actual is modified by the block"
107
+ fails "expect { ... }.to raise_error(message) includes the backtrace of any other error in the failure message"
108
+ fails "expect(...).not_to have_sym(*args) fails if #has_sym?(*args) returns true"
109
+ fails "expect(...).not_to have_sym(*args) includes multiple args in the failure message if multiple args were given to the matcher"
110
+ fails "expect(...).not_to respond_to(:sym) fails if target responds to :sym"
111
+ fails "expect(...).not_to respond_to(:sym).with(1).argument fails if target responds to :sym with 1 arg"
112
+ fails "expect(...).not_to respond_to(:sym).with(1).argument fails if target responds to :sym with any number of args"
113
+ fails "expect(...).not_to respond_to(:sym).with(1).argument fails if target responds to :sym with one or more args"
114
+ fails "expect(...).not_to respond_to(:sym).with(2).arguments fails if target responds to :sym with 2 args"
115
+ fails "expect(...).not_to respond_to(:sym).with(2).arguments fails if target responds to :sym with any number args"
116
+ fails "expect(...).not_to respond_to(:sym).with(2).arguments fails if target responds to :sym with one or more args"
117
+ fails "expect(...).not_to respond_to(:sym).with(2).arguments fails if target responds to :sym with two or more args"
118
+ fails "expect(...).not_to respond_to(message1, message2) fails if target responds to both message1 and message2"
119
+ fails "expect(...).not_to respond_to(message1, message2) fails if target responds to message1 but not message2"
120
+ fails "expect(...).not_to respond_to(message1, message2) fails if target responds to message2 but not message1"
121
+ fails "expect(...).to be_predicate fails when :predicate? is private"
122
+ fails "expect(...).to have_sym(*args) allows composable aliases to be defined"
123
+ fails "expect(...).to have_sym(*args) fails if #has_sym?(*args) is private"
124
+ fails "expect(...).to have_sym(*args) fails if #has_sym?(*args) returns false"
125
+ fails "expect(...).to have_sym(*args) includes multiple args in the failure message if multiple args were given to the matcher"
126
+ fails "expect(...).to match(expected) provides a diff on failure"
127
+ fails "expect(...).to respond_to(:sym) fails if target does not respond to :sym"
128
+ fails "expect(...).to respond_to(:sym).with(1).argument fails if :sym expects 0 args"
129
+ fails "expect(...).to respond_to(:sym).with(1).argument fails if :sym expects 2 args"
130
+ fails "expect(...).to respond_to(:sym).with(1).argument fails if :sym expects 2 or more args"
131
+ fails "expect(...).to respond_to(:sym).with(1).argument fails if target does not respond to :sym"
132
+ fails "expect(...).to respond_to(:sym).with(2).arguments fails if :sym expects 0 args"
133
+ fails "expect(...).to respond_to(:sym).with(2).arguments fails if :sym expects 1 args"
134
+ fails "expect(...).to respond_to(:sym).with(2).arguments fails if :sym expects 3 or more args"
135
+ fails "expect(...).to respond_to(:sym).with(2).arguments fails if target does not respond to :sym"
136
+ fails "expect(actual).not_to be_within(delta).of(expected) fails when actual < (expected + delta)"
137
+ fails "expect(actual).not_to be_within(delta).of(expected) fails when actual == (expected + delta)"
138
+ fails "expect(actual).not_to be_within(delta).of(expected) fails when actual == (expected - delta)"
139
+ fails "expect(actual).not_to be_within(delta).of(expected) fails when actual == expected"
140
+ fails "expect(actual).not_to be_within(delta).of(expected) fails when actual > (expected - delta)"
141
+ fails "expect(actual).to be_an_instance_of(expected) provides a description"
142
+ fails "expect(actual).to be_instance_of(expected) provides a description"
143
+ fails "expect(actual).to be_within(delta).of(expected) fails when actual < (expected - delta)"
144
+ fails "expect(actual).to be_within(delta).of(expected) fails when actual > (expected + delta)"
145
+ fails "expect(actual).to be_within(delta).of(expected) provides a description"
146
+ fails "expect(actual).to be_within(delta).percent_of(expected) fails when actual is outside the given percent variance"
147
+ fails "expect(actual).to be_within(delta).percent_of(expected) provides a description"
148
+ fails "expect(array).to contain_exactly(*other_array) fails a match of 11 items with duplicates in a reasonable amount of time"
149
+ fails "operator matchers should == delegates message to target"
150
+ fails "operator matchers should === delegates message to target"
151
+ fails "operator matchers should === fails when target.===(actual) returns false"
152
+ fails "operator matchers should =~ delegates message to target"
153
+ fails "operator matchers should =~ fails when target.=~(actual) returns false"
154
+ fails "operator matchers should_not == delegates message to target"
155
+ fails "operator matchers should_not === delegates message to target"
156
+ fails "operator matchers should_not === fails when target.===(actual) returns false"
157
+ fails "operator matchers should_not =~ delegates message to target"
158
+ fails "operator matchers should_not =~ fails when target.=~(actual) returns false"
159
+ fails "output.to_stderr matcher does not produce warnings when the failure message is accessed first"
160
+ fails "output.to_stderr matcher expect { ... }.to output(/regex/).to_stderr fails if the block does not output to stderr"
161
+ fails "output.to_stderr matcher expect { ... }.to output(/regex/).to_stderr fails if the block outputs a string to stderr that does not match"
162
+ fails "output.to_stderr matcher expect { ... }.to output(matcher).to_stderr fails if the block outputs a string to stderr that does not pass the given matcher"
163
+ fails "output.to_stderr matcher expect { ... }.to_not output(/regex/).to_stderr fails if the block outputs a string to stderr that matches the regex"
164
+ fails "output.to_stderr matcher expect { ... }.to_not output(matcher).to_stderr fails if the block outputs a string to stderr that passes the given matcher"
165
+ fails "output.to_stdout matcher does not produce warnings when the failure message is accessed first"
166
+ fails "output.to_stdout matcher expect { ... }.to output(/regex/).to_stdout fails if the block does not output to stdout"
167
+ fails "output.to_stdout matcher expect { ... }.to output(/regex/).to_stdout fails if the block outputs a string to stdout that does not match"
168
+ fails "output.to_stdout matcher expect { ... }.to output(matcher).to_stdout fails if the block outputs a string to stdout that does not pass the given matcher"
169
+ fails "output.to_stdout matcher expect { ... }.to_not output(/regex/).to_stdout fails if the block outputs a string to stdout that matches the regex"
170
+ fails "output.to_stdout matcher expect { ... }.to_not output(matcher).to_stdout fails if the block outputs a string to stdout that passes the given matcher"
171
+ fails "rspec warnings and deprecations #warn_with message, options it should behave like warning helper optionally sets the replacement", "String#<< not supported. Mutable String methods are not supported in Opal."
172
+ fails "rspec warnings and deprecations #warn_with message, options it should behave like warning helper sets the calling line", "String#<< not supported. Mutable String methods are not supported in Opal."
173
+ fails "rspec warnings and deprecations #warn_with message, options it should behave like warning helper warns with the message text", "String#<< not supported. Mutable String methods are not supported in Opal."
174
+ fails "rspec warnings and deprecations #warning it should behave like warning helper optionally sets the replacement", "String#<< not supported. Mutable String methods are not supported in Opal."
175
+ fails "rspec warnings and deprecations #warning it should behave like warning helper sets the calling line", "String#<< not supported. Mutable String methods are not supported in Opal."
176
+ fails "rspec warnings and deprecations #warning it should behave like warning helper warns with the message text", "String#<< not supported. Mutable String methods are not supported in Opal."
177
+ fails "rspec warnings and deprecations #warning prepends WARNING:", "String#<< not supported. Mutable String methods are not supported in Opal."
178
+ fails "rspec warnings and deprecations when rspec-core is not available behaves like falling back to Kernel.warn falls back to warning with a plain message", "String#<< not supported. Mutable String methods are not supported in Opal."
179
+ fails "rspec warnings and deprecations when rspec-core is not available behaves like falling back to Kernel.warn handles being passed options", "String#<< not supported. Mutable String methods are not supported in Opal."
180
+ fails "rspec warnings and deprecations works when required in isolation", "undefined method `run_ruby_with_current_load_path' for #<RSpec::ExampleGroups::RspecWarningsAndDeprec"
181
+ fails "should =~ array when the array defines a `=~` method delegates to that method rather than using the contain_exactly matcher"
182
+ fails "yield_successive_args matcher has a description"
183
+
184
+ require 'opal/version'
185
+ if Opal::VERSION == '0.11.1'
186
+ fails "expect { ... }.to raise_error(NamedError) fails if another error is raised (NameError)", "expected RSpec::Expectations::ExpectationNotMetError with message matching /expected NameError, got #"
187
+ end
188
+ end