opal-rspec 0.7.0.rc.1 → 0.7.0.rc.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (513) hide show
  1. checksums.yaml +4 -4
  2. data/lib/opal/rspec/version.rb +1 -1
  3. data/opal-rspec.gemspec +5 -3
  4. data/rspec-core/upstream/.document +5 -0
  5. data/rspec-core/upstream/.gitignore +21 -0
  6. data/rspec-core/upstream/.rspec +2 -0
  7. data/rspec-core/upstream/.rubocop.yml +53 -0
  8. data/rspec-core/upstream/.rubocop_rspec_base.yml +130 -0
  9. data/rspec-core/upstream/.travis.yml +35 -0
  10. data/rspec-core/upstream/.yardopts +7 -0
  11. data/rspec-core/upstream/Changelog.md +1641 -0
  12. data/rspec-core/upstream/DEV-README.md +28 -0
  13. data/rspec-core/upstream/Gemfile +34 -0
  14. data/rspec-core/upstream/Gemfile-custom.sample +19 -0
  15. data/rspec-core/upstream/Guardfile +5 -0
  16. data/rspec-core/upstream/License.txt +25 -0
  17. data/rspec-core/upstream/README.md +243 -0
  18. data/rspec-core/upstream/Rakefile +85 -0
  19. data/rspec-core/upstream/benchmarks/README.md +4 -0
  20. data/rspec-core/upstream/benchmarks/boot_time_with_many_load_path_dirs.sh +123 -0
  21. data/rspec-core/upstream/benchmarks/call_v_yield.rb +81 -0
  22. data/rspec-core/upstream/benchmarks/check_inclusion.rb +125 -0
  23. data/rspec-core/upstream/benchmarks/define_method_v_attr_reader_v_def.rb +81 -0
  24. data/rspec-core/upstream/benchmarks/eager_vs_lazy_metadata.rb +126 -0
  25. data/rspec-core/upstream/benchmarks/eager_vs_lazy_metadata/define_examples.rb +22 -0
  26. data/rspec-core/upstream/benchmarks/filter_object.rb +35 -0
  27. data/rspec-core/upstream/benchmarks/index_v_take_while.rb +47 -0
  28. data/rspec-core/upstream/benchmarks/map_then_flatten_vs_flat_map_benchmarks.rb +94 -0
  29. data/rspec-core/upstream/benchmarks/require_relative_v_require.rb +75 -0
  30. data/rspec-core/upstream/benchmarks/respond_to_v_defined.rb +72 -0
  31. data/rspec-core/upstream/benchmarks/several_regexps_v_one_big_one.rb +86 -0
  32. data/rspec-core/upstream/benchmarks/sort_by_v_shuffle.rb +83 -0
  33. data/rspec-core/upstream/benchmarks/to_proc_v_not_to_proc.rb +539 -0
  34. data/rspec-core/upstream/cucumber.yml +6 -0
  35. data/rspec-core/upstream/exe/rspec +4 -0
  36. data/rspec-core/upstream/features/.nav +62 -0
  37. data/rspec-core/upstream/features/README.md +13 -0
  38. data/rspec-core/upstream/features/Upgrade.md +352 -0
  39. data/rspec-core/upstream/features/command_line/README.md +28 -0
  40. data/rspec-core/upstream/features/command_line/dry_run.feature +29 -0
  41. data/rspec-core/upstream/features/command_line/example_name_option.feature +98 -0
  42. data/rspec-core/upstream/features/command_line/exit_status.feature +66 -0
  43. data/rspec-core/upstream/features/command_line/fail_fast.feature +27 -0
  44. data/rspec-core/upstream/features/command_line/format_option.feature +86 -0
  45. data/rspec-core/upstream/features/command_line/init.feature +50 -0
  46. data/rspec-core/upstream/features/command_line/line_number_appended_to_path.feature +159 -0
  47. data/rspec-core/upstream/features/command_line/order.md +23 -0
  48. data/rspec-core/upstream/features/command_line/pattern_option.feature +42 -0
  49. data/rspec-core/upstream/features/command_line/rake_task.feature +158 -0
  50. data/rspec-core/upstream/features/command_line/randomization.feature +62 -0
  51. data/rspec-core/upstream/features/command_line/require_option.feature +45 -0
  52. data/rspec-core/upstream/features/command_line/ruby.feature +23 -0
  53. data/rspec-core/upstream/features/command_line/tag.feature +102 -0
  54. data/rspec-core/upstream/features/command_line/warnings_option.feature +29 -0
  55. data/rspec-core/upstream/features/configuration/alias_example_to.feature +57 -0
  56. data/rspec-core/upstream/features/configuration/backtrace_exclusion_patterns.feature +138 -0
  57. data/rspec-core/upstream/features/configuration/custom_settings.feature +84 -0
  58. data/rspec-core/upstream/features/configuration/default_path.feature +37 -0
  59. data/rspec-core/upstream/features/configuration/deprecation_stream.feature +87 -0
  60. data/rspec-core/upstream/features/configuration/enable_global_dsl.feature +60 -0
  61. data/rspec-core/upstream/features/configuration/exclude_pattern.feature +43 -0
  62. data/rspec-core/upstream/features/configuration/fail_fast.feature +79 -0
  63. data/rspec-core/upstream/features/configuration/failure_exit_code.feature +53 -0
  64. data/rspec-core/upstream/features/configuration/order_and_seed.feature +5 -0
  65. data/rspec-core/upstream/features/configuration/output_stream.feature +27 -0
  66. data/rspec-core/upstream/features/configuration/overriding_global_ordering.feature +90 -0
  67. data/rspec-core/upstream/features/configuration/pattern.feature +62 -0
  68. data/rspec-core/upstream/features/configuration/profile.feature +220 -0
  69. data/rspec-core/upstream/features/configuration/read_options_from_file.feature +95 -0
  70. data/rspec-core/upstream/features/configuration/run_all_when_everything_filtered.feature +78 -0
  71. data/rspec-core/upstream/features/configuration/zero_monkey_patching_mode.feature +106 -0
  72. data/rspec-core/upstream/features/core_standalone.feature +23 -0
  73. data/rspec-core/upstream/features/example_groups/aliasing.feature +48 -0
  74. data/rspec-core/upstream/features/example_groups/basic_structure.feature +55 -0
  75. data/rspec-core/upstream/features/example_groups/shared_context.feature +92 -0
  76. data/rspec-core/upstream/features/example_groups/shared_examples.feature +295 -0
  77. data/rspec-core/upstream/features/expectation_framework_integration/configure_expectation_framework.feature +167 -0
  78. data/rspec-core/upstream/features/filtering/exclusion_filters.feature +135 -0
  79. data/rspec-core/upstream/features/filtering/if_and_unless.feature +165 -0
  80. data/rspec-core/upstream/features/filtering/inclusion_filters.feature +101 -0
  81. data/rspec-core/upstream/features/formatters/configurable_colors.feature +32 -0
  82. data/rspec-core/upstream/features/formatters/custom_formatter.feature +37 -0
  83. data/rspec-core/upstream/features/formatters/json_formatter.feature +30 -0
  84. data/rspec-core/upstream/features/helper_methods/arbitrary_methods.feature +40 -0
  85. data/rspec-core/upstream/features/helper_methods/let.feature +50 -0
  86. data/rspec-core/upstream/features/helper_methods/modules.feature +146 -0
  87. data/rspec-core/upstream/features/hooks/around_hooks.feature +345 -0
  88. data/rspec-core/upstream/features/hooks/before_and_after_hooks.feature +434 -0
  89. data/rspec-core/upstream/features/hooks/filtering.feature +234 -0
  90. data/rspec-core/upstream/features/metadata/current_example.feature +57 -0
  91. data/rspec-core/upstream/features/metadata/described_class.feature +17 -0
  92. data/rspec-core/upstream/features/metadata/user_defined.feature +100 -0
  93. data/rspec-core/upstream/features/mock_framework_integration/use_any_framework.feature +106 -0
  94. data/rspec-core/upstream/features/mock_framework_integration/use_flexmock.feature +94 -0
  95. data/rspec-core/upstream/features/mock_framework_integration/use_mocha.feature +95 -0
  96. data/rspec-core/upstream/features/mock_framework_integration/use_rr.feature +96 -0
  97. data/rspec-core/upstream/features/mock_framework_integration/use_rspec.feature +113 -0
  98. data/rspec-core/upstream/features/pending_and_skipped_examples/README.md +3 -0
  99. data/rspec-core/upstream/features/pending_and_skipped_examples/pending_examples.feature +73 -0
  100. data/rspec-core/upstream/features/pending_and_skipped_examples/skipped_examples.feature +106 -0
  101. data/rspec-core/upstream/features/spec_files/arbitrary_file_suffix.feature +13 -0
  102. data/rspec-core/upstream/features/step_definitions/additional_cli_steps.rb +126 -0
  103. data/rspec-core/upstream/features/step_definitions/core_standalone_steps.rb +12 -0
  104. data/rspec-core/upstream/features/subject/explicit_subject.feature +187 -0
  105. data/rspec-core/upstream/features/subject/implicit_subject.feature +57 -0
  106. data/rspec-core/upstream/features/subject/one_liner_syntax.feature +69 -0
  107. data/rspec-core/upstream/features/support/env.rb +21 -0
  108. data/rspec-core/upstream/features/support/require_expect_syntax_in_aruba_specs.rb +29 -0
  109. data/rspec-core/upstream/features/support/rubinius.rb +6 -0
  110. data/rspec-core/upstream/lib/rspec/autorun.rb +2 -0
  111. data/rspec-core/upstream/lib/rspec/core.rb +169 -0
  112. data/rspec-core/upstream/lib/rspec/core/backport_random.rb +336 -0
  113. data/rspec-core/upstream/lib/rspec/core/backtrace_formatter.rb +66 -0
  114. data/rspec-core/upstream/lib/rspec/core/configuration.rb +1440 -0
  115. data/rspec-core/upstream/lib/rspec/core/configuration_options.rb +173 -0
  116. data/rspec-core/upstream/lib/rspec/core/drb.rb +111 -0
  117. data/rspec-core/upstream/lib/rspec/core/dsl.rb +93 -0
  118. data/rspec-core/upstream/lib/rspec/core/example.rb +502 -0
  119. data/rspec-core/upstream/lib/rspec/core/example_group.rb +606 -0
  120. data/rspec-core/upstream/lib/rspec/core/filter_manager.rb +259 -0
  121. data/rspec-core/upstream/lib/rspec/core/flat_map.rb +18 -0
  122. data/rspec-core/upstream/lib/rspec/core/formatters.rb +240 -0
  123. data/rspec-core/upstream/lib/rspec/core/formatters/base_formatter.rb +67 -0
  124. data/rspec-core/upstream/lib/rspec/core/formatters/base_text_formatter.rb +76 -0
  125. data/rspec-core/upstream/lib/rspec/core/formatters/console_codes.rb +64 -0
  126. data/rspec-core/upstream/lib/rspec/core/formatters/deprecation_formatter.rb +222 -0
  127. data/rspec-core/upstream/lib/rspec/core/formatters/documentation_formatter.rb +68 -0
  128. data/rspec-core/upstream/lib/rspec/core/formatters/helpers.rb +87 -0
  129. data/rspec-core/upstream/lib/rspec/core/formatters/html_formatter.rb +149 -0
  130. data/rspec-core/upstream/lib/rspec/core/formatters/html_printer.rb +403 -0
  131. data/rspec-core/upstream/lib/rspec/core/formatters/json_formatter.rb +94 -0
  132. data/rspec-core/upstream/lib/rspec/core/formatters/profile_formatter.rb +65 -0
  133. data/rspec-core/upstream/lib/rspec/core/formatters/progress_formatter.rb +28 -0
  134. data/rspec-core/upstream/lib/rspec/core/formatters/protocol.rb +163 -0
  135. data/rspec-core/upstream/lib/rspec/core/formatters/snippet_extractor.rb +104 -0
  136. data/rspec-core/upstream/lib/rspec/core/hooks.rb +591 -0
  137. data/rspec-core/upstream/lib/rspec/core/memoized_helpers.rb +472 -0
  138. data/rspec-core/upstream/lib/rspec/core/metadata.rb +437 -0
  139. data/rspec-core/upstream/lib/rspec/core/metadata_filter.rb +95 -0
  140. data/rspec-core/upstream/lib/rspec/core/minitest_assertions_adapter.rb +28 -0
  141. data/rspec-core/upstream/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
  142. data/rspec-core/upstream/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
  143. data/rspec-core/upstream/lib/rspec/core/mocking_adapters/null.rb +14 -0
  144. data/rspec-core/upstream/lib/rspec/core/mocking_adapters/rr.rb +31 -0
  145. data/rspec-core/upstream/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
  146. data/rspec-core/upstream/lib/rspec/core/notifications.rb +542 -0
  147. data/rspec-core/upstream/lib/rspec/core/option_parser.rb +222 -0
  148. data/rspec-core/upstream/lib/rspec/core/ordering.rb +155 -0
  149. data/rspec-core/upstream/lib/rspec/core/pending.rb +163 -0
  150. data/rspec-core/upstream/lib/rspec/core/project_initializer.rb +48 -0
  151. data/rspec-core/upstream/lib/rspec/core/project_initializer/.rspec +2 -0
  152. data/rspec-core/upstream/lib/rspec/core/project_initializer/spec/spec_helper.rb +89 -0
  153. data/rspec-core/upstream/lib/rspec/core/rake_task.rb +187 -0
  154. data/rspec-core/upstream/lib/rspec/core/reporter.rb +149 -0
  155. data/rspec-core/upstream/lib/rspec/core/ruby_project.rb +45 -0
  156. data/rspec-core/upstream/lib/rspec/core/runner.rb +158 -0
  157. data/rspec-core/upstream/lib/rspec/core/shared_context.rb +55 -0
  158. data/rspec-core/upstream/lib/rspec/core/shared_example_group.rb +182 -0
  159. data/rspec-core/upstream/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
  160. data/rspec-core/upstream/lib/rspec/core/version.rb +9 -0
  161. data/rspec-core/upstream/lib/rspec/core/warnings.rb +40 -0
  162. data/rspec-core/upstream/lib/rspec/core/world.rb +183 -0
  163. data/rspec-core/upstream/maintenance-branch +1 -0
  164. data/rspec-core/upstream/rspec-core.gemspec +53 -0
  165. data/rspec-core/upstream/script/clone_all_rspec_repos +24 -0
  166. data/rspec-core/upstream/script/console +8 -0
  167. data/rspec-core/upstream/script/functions.sh +168 -0
  168. data/rspec-core/upstream/script/ignores +72 -0
  169. data/rspec-core/upstream/script/list_method_cache_busters.sh +23 -0
  170. data/rspec-core/upstream/script/prevent_runtime_method_cache_busters +15 -0
  171. data/rspec-core/upstream/script/regen_fixtures.sh +39 -0
  172. data/rspec-core/upstream/script/rspec_with_simplecov +42 -0
  173. data/rspec-core/upstream/script/run_build +28 -0
  174. data/rspec-expectations/upstream/.document +5 -0
  175. data/rspec-expectations/upstream/.gitignore +17 -0
  176. data/rspec-expectations/upstream/.rspec +2 -0
  177. data/rspec-expectations/upstream/.rubocop.yml +5 -0
  178. data/rspec-expectations/upstream/.rubocop_rspec_base.yml +130 -0
  179. data/rspec-expectations/upstream/.travis.yml +35 -0
  180. data/rspec-expectations/upstream/.yardopts +6 -0
  181. data/rspec-expectations/upstream/Changelog.md +835 -0
  182. data/rspec-expectations/upstream/DEV-README.md +28 -0
  183. data/rspec-expectations/upstream/Gemfile +35 -0
  184. data/rspec-expectations/upstream/Gemfile-custom.sample +19 -0
  185. data/rspec-expectations/upstream/Guardfile +6 -0
  186. data/rspec-expectations/upstream/License.txt +24 -0
  187. data/rspec-expectations/upstream/README.md +278 -0
  188. data/rspec-expectations/upstream/Rakefile +78 -0
  189. data/rspec-expectations/upstream/Should.md +168 -0
  190. data/rspec-expectations/upstream/benchmarks/2.x_vs_3.x_matcher_dsl_implementation.rb +253 -0
  191. data/rspec-expectations/upstream/benchmarks/autoload_v_require.rb +25 -0
  192. data/rspec-expectations/upstream/benchmarks/cloning_matchers.rb +19 -0
  193. data/rspec-expectations/upstream/benchmarks/default_messages_as_methods_v_blocks.rb +27 -0
  194. data/rspec-expectations/upstream/benchmarks/example_spec.rb +9 -0
  195. data/rspec-expectations/upstream/benchmarks/include_v_superclass.rb +39 -0
  196. data/rspec-expectations/upstream/benchmarks/match_array/failing_with_distinct_items.rb +147 -0
  197. data/rspec-expectations/upstream/benchmarks/match_array/failing_with_duplicate_items.rb +122 -0
  198. data/rspec-expectations/upstream/benchmarks/match_array/passing_with_distinct_items.rb +154 -0
  199. data/rspec-expectations/upstream/benchmarks/match_array/passing_with_duplicate_items.rb +132 -0
  200. data/rspec-expectations/upstream/benchmarks/match_array/rubyprof/passing_with_distinct_items.rb +9 -0
  201. data/rspec-expectations/upstream/benchmarks/matcher_dsl_vs_classes.rb +180 -0
  202. data/rspec-expectations/upstream/benchmarks/method_to_proc.rb +72 -0
  203. data/rspec-expectations/upstream/benchmarks/set_vs_array_include.rb +68 -0
  204. data/rspec-expectations/upstream/cucumber.yml +10 -0
  205. data/rspec-expectations/upstream/features/.nav +41 -0
  206. data/rspec-expectations/upstream/features/README.md +49 -0
  207. data/rspec-expectations/upstream/features/built_in_matchers/README.md +137 -0
  208. data/rspec-expectations/upstream/features/built_in_matchers/all.feature +60 -0
  209. data/rspec-expectations/upstream/features/built_in_matchers/be.feature +175 -0
  210. data/rspec-expectations/upstream/features/built_in_matchers/be_within.feature +48 -0
  211. data/rspec-expectations/upstream/features/built_in_matchers/change.feature +66 -0
  212. data/rspec-expectations/upstream/features/built_in_matchers/comparisons.feature +96 -0
  213. data/rspec-expectations/upstream/features/built_in_matchers/contain_exactly.feature +64 -0
  214. data/rspec-expectations/upstream/features/built_in_matchers/cover.feature +47 -0
  215. data/rspec-expectations/upstream/features/built_in_matchers/end_with.feature +48 -0
  216. data/rspec-expectations/upstream/features/built_in_matchers/equality.feature +135 -0
  217. data/rspec-expectations/upstream/features/built_in_matchers/exist.feature +44 -0
  218. data/rspec-expectations/upstream/features/built_in_matchers/have_attributes.feature +47 -0
  219. data/rspec-expectations/upstream/features/built_in_matchers/include.feature +123 -0
  220. data/rspec-expectations/upstream/features/built_in_matchers/match.feature +49 -0
  221. data/rspec-expectations/upstream/features/built_in_matchers/output.feature +68 -0
  222. data/rspec-expectations/upstream/features/built_in_matchers/predicates.feature +181 -0
  223. data/rspec-expectations/upstream/features/built_in_matchers/raise_error.feature +144 -0
  224. data/rspec-expectations/upstream/features/built_in_matchers/respond_to.feature +83 -0
  225. data/rspec-expectations/upstream/features/built_in_matchers/satisfy.feature +32 -0
  226. data/rspec-expectations/upstream/features/built_in_matchers/start_with.feature +48 -0
  227. data/rspec-expectations/upstream/features/built_in_matchers/throw_symbol.feature +90 -0
  228. data/rspec-expectations/upstream/features/built_in_matchers/types.feature +116 -0
  229. data/rspec-expectations/upstream/features/built_in_matchers/yield.feature +156 -0
  230. data/rspec-expectations/upstream/features/composing_matchers.feature +246 -0
  231. data/rspec-expectations/upstream/features/compound_expectations.feature +52 -0
  232. data/rspec-expectations/upstream/features/custom_matchers/access_running_example.feature +48 -0
  233. data/rspec-expectations/upstream/features/custom_matchers/define_diffable_matcher.feature +29 -0
  234. data/rspec-expectations/upstream/features/custom_matchers/define_matcher.feature +337 -0
  235. data/rspec-expectations/upstream/features/custom_matchers/define_matcher_outside_rspec.feature +32 -0
  236. data/rspec-expectations/upstream/features/custom_matchers/define_matcher_with_fluent_interface.feature +51 -0
  237. data/rspec-expectations/upstream/features/customized_message.feature +39 -0
  238. data/rspec-expectations/upstream/features/define_negated_matcher.feature +29 -0
  239. data/rspec-expectations/upstream/features/diffing.feature +85 -0
  240. data/rspec-expectations/upstream/features/implicit_docstrings.feature +51 -0
  241. data/rspec-expectations/upstream/features/step_definitions/additional_cli_steps.rb +22 -0
  242. data/rspec-expectations/upstream/features/support/disallow_certain_apis.rb +34 -0
  243. data/rspec-expectations/upstream/features/support/env.rb +21 -0
  244. data/rspec-expectations/upstream/features/support/rubinius.rb +6 -0
  245. data/rspec-expectations/upstream/features/syntax_configuration.feature +92 -0
  246. data/rspec-expectations/upstream/features/test_frameworks/minitest.feature +44 -0
  247. data/rspec-expectations/upstream/lib/rspec/expectations.rb +68 -0
  248. data/rspec-expectations/upstream/lib/rspec/expectations/configuration.rb +147 -0
  249. data/rspec-expectations/upstream/lib/rspec/expectations/expectation_target.rb +119 -0
  250. data/rspec-expectations/upstream/lib/rspec/expectations/fail_with.rb +34 -0
  251. data/rspec-expectations/upstream/lib/rspec/expectations/handler.rb +167 -0
  252. data/rspec-expectations/upstream/lib/rspec/expectations/minitest_integration.rb +17 -0
  253. data/rspec-expectations/upstream/lib/rspec/expectations/syntax.rb +132 -0
  254. data/rspec-expectations/upstream/lib/rspec/expectations/version.rb +8 -0
  255. data/rspec-expectations/upstream/lib/rspec/matchers.rb +967 -0
  256. data/rspec-expectations/upstream/lib/rspec/matchers/aliased_matcher.rb +116 -0
  257. data/rspec-expectations/upstream/lib/rspec/matchers/built_in.rb +52 -0
  258. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/all.rb +85 -0
  259. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/base_matcher.rb +132 -0
  260. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/be.rb +277 -0
  261. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/be_between.rb +77 -0
  262. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/be_instance_of.rb +22 -0
  263. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/be_kind_of.rb +16 -0
  264. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/be_within.rb +72 -0
  265. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/change.rb +337 -0
  266. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/compound.rb +258 -0
  267. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/contain_exactly.rb +249 -0
  268. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/cover.rb +24 -0
  269. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/eq.rb +75 -0
  270. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/eql.rb +34 -0
  271. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/equal.rb +81 -0
  272. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/exist.rb +86 -0
  273. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/has.rb +101 -0
  274. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/have_attributes.rb +84 -0
  275. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/include.rb +105 -0
  276. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/match.rb +29 -0
  277. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/operators.rb +119 -0
  278. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/output.rb +152 -0
  279. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/raise_error.rb +174 -0
  280. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/respond_to.rb +91 -0
  281. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/satisfy.rb +39 -0
  282. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/start_and_end_with.rb +82 -0
  283. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/throw_symbol.rb +132 -0
  284. data/rspec-expectations/upstream/lib/rspec/matchers/built_in/yield.rb +420 -0
  285. data/rspec-expectations/upstream/lib/rspec/matchers/composable.rb +183 -0
  286. data/rspec-expectations/upstream/lib/rspec/matchers/dsl.rb +391 -0
  287. data/rspec-expectations/upstream/lib/rspec/matchers/generated_descriptions.rb +42 -0
  288. data/rspec-expectations/upstream/lib/rspec/matchers/matcher_delegator.rb +33 -0
  289. data/rspec-expectations/upstream/lib/rspec/matchers/matcher_protocol.rb +99 -0
  290. data/rspec-expectations/upstream/lib/rspec/matchers/pretty.rb +77 -0
  291. data/rspec-expectations/upstream/maintenance-branch +1 -0
  292. data/rspec-expectations/upstream/rspec-expectations.gemspec +46 -0
  293. data/rspec-expectations/upstream/script/clone_all_rspec_repos +24 -0
  294. data/rspec-expectations/upstream/script/functions.sh +168 -0
  295. data/rspec-expectations/upstream/script/run_build +28 -0
  296. data/rspec-mocks/upstream/.autotest +7 -0
  297. data/rspec-mocks/upstream/.document +5 -0
  298. data/rspec-mocks/upstream/.gitignore +18 -0
  299. data/rspec-mocks/upstream/.rspec +2 -0
  300. data/rspec-mocks/upstream/.rubocop.yml +17 -0
  301. data/rspec-mocks/upstream/.rubocop_rspec_base.yml +130 -0
  302. data/rspec-mocks/upstream/.travis.yml +35 -0
  303. data/rspec-mocks/upstream/.yardopts +6 -0
  304. data/rspec-mocks/upstream/Changelog.md +817 -0
  305. data/rspec-mocks/upstream/DEV-README.md +28 -0
  306. data/rspec-mocks/upstream/Gemfile +34 -0
  307. data/rspec-mocks/upstream/Gemfile-custom.sample +19 -0
  308. data/rspec-mocks/upstream/Guardfile +8 -0
  309. data/rspec-mocks/upstream/License.txt +24 -0
  310. data/rspec-mocks/upstream/README.md +397 -0
  311. data/rspec-mocks/upstream/Rakefile +72 -0
  312. data/rspec-mocks/upstream/benchmarks/boot_time.sh +31 -0
  313. data/rspec-mocks/upstream/benchmarks/double_creation.rb +66 -0
  314. data/rspec-mocks/upstream/benchmarks/each_value_v_values_each.rb +58 -0
  315. data/rspec-mocks/upstream/benchmarks/find_original_method_early.rb +64 -0
  316. data/rspec-mocks/upstream/benchmarks/method_defined_at_any_visibility.rb +101 -0
  317. data/rspec-mocks/upstream/benchmarks/thread_safety.rb +24 -0
  318. data/rspec-mocks/upstream/benchmarks/transfer_nested_constants.rb +77 -0
  319. data/rspec-mocks/upstream/cucumber.yml +2 -0
  320. data/rspec-mocks/upstream/features/.nav +43 -0
  321. data/rspec-mocks/upstream/features/README.md +76 -0
  322. data/rspec-mocks/upstream/features/basics/allowing_messages.feature +35 -0
  323. data/rspec-mocks/upstream/features/basics/expecting_messages.feature +73 -0
  324. data/rspec-mocks/upstream/features/basics/null_object_doubles.feature +35 -0
  325. data/rspec-mocks/upstream/features/basics/partial_test_doubles.feature +70 -0
  326. data/rspec-mocks/upstream/features/basics/scope.feature +99 -0
  327. data/rspec-mocks/upstream/features/basics/spies.feature +144 -0
  328. data/rspec-mocks/upstream/features/basics/test_doubles.feature +41 -0
  329. data/rspec-mocks/upstream/features/configuring_responses/README.md +12 -0
  330. data/rspec-mocks/upstream/features/configuring_responses/block_implementation.feature +131 -0
  331. data/rspec-mocks/upstream/features/configuring_responses/calling_the_original_implementation.feature +52 -0
  332. data/rspec-mocks/upstream/features/configuring_responses/raising_an_error.feature +28 -0
  333. data/rspec-mocks/upstream/features/configuring_responses/returning_a_value.feature +52 -0
  334. data/rspec-mocks/upstream/features/configuring_responses/throwing.feature +36 -0
  335. data/rspec-mocks/upstream/features/configuring_responses/wrapping_the_original_implementation.feature +53 -0
  336. data/rspec-mocks/upstream/features/configuring_responses/yielding.feature +76 -0
  337. data/rspec-mocks/upstream/features/mutating_constants/README.md +78 -0
  338. data/rspec-mocks/upstream/features/mutating_constants/hide_defined_constant.feature +64 -0
  339. data/rspec-mocks/upstream/features/mutating_constants/hide_undefined_constant.feature +22 -0
  340. data/rspec-mocks/upstream/features/mutating_constants/stub_defined_constant.feature +77 -0
  341. data/rspec-mocks/upstream/features/mutating_constants/stub_undefined_constant.feature +50 -0
  342. data/rspec-mocks/upstream/features/old_syntax/README.md +35 -0
  343. data/rspec-mocks/upstream/features/old_syntax/any_instance.feature +105 -0
  344. data/rspec-mocks/upstream/features/old_syntax/should_receive.feature +90 -0
  345. data/rspec-mocks/upstream/features/old_syntax/stub.feature +51 -0
  346. data/rspec-mocks/upstream/features/old_syntax/stub_chain.feature +69 -0
  347. data/rspec-mocks/upstream/features/old_syntax/unstub.feature +43 -0
  348. data/rspec-mocks/upstream/features/outside_rspec/minitest.feature +80 -0
  349. data/rspec-mocks/upstream/features/outside_rspec/standalone.feature +33 -0
  350. data/rspec-mocks/upstream/features/setting_constraints/README.md +6 -0
  351. data/rspec-mocks/upstream/features/setting_constraints/matching_arguments.feature +97 -0
  352. data/rspec-mocks/upstream/features/setting_constraints/message_order.feature +63 -0
  353. data/rspec-mocks/upstream/features/setting_constraints/receive_counts.feature +189 -0
  354. data/rspec-mocks/upstream/features/step_definitions/additional_cli_steps.rb +21 -0
  355. data/rspec-mocks/upstream/features/support/disallow_certain_apis.rb +24 -0
  356. data/rspec-mocks/upstream/features/support/env.rb +22 -0
  357. data/rspec-mocks/upstream/features/support/rubinius.rb +6 -0
  358. data/rspec-mocks/upstream/features/verifying_doubles/README.md +13 -0
  359. data/rspec-mocks/upstream/features/verifying_doubles/class_doubles.feature +70 -0
  360. data/rspec-mocks/upstream/features/verifying_doubles/dynamic_classes.feature +73 -0
  361. data/rspec-mocks/upstream/features/verifying_doubles/instance_doubles.feature +101 -0
  362. data/rspec-mocks/upstream/features/verifying_doubles/object_doubles.feature +62 -0
  363. data/rspec-mocks/upstream/features/verifying_doubles/partial_doubles.feature +34 -0
  364. data/rspec-mocks/upstream/features/working_with_legacy_code/README.md +3 -0
  365. data/rspec-mocks/upstream/features/working_with_legacy_code/any_instance.feature +115 -0
  366. data/rspec-mocks/upstream/features/working_with_legacy_code/message_chains.feature +79 -0
  367. data/rspec-mocks/upstream/lib/rspec/mocks.rb +126 -0
  368. data/rspec-mocks/upstream/lib/rspec/mocks/any_instance.rb +10 -0
  369. data/rspec-mocks/upstream/lib/rspec/mocks/any_instance/chain.rb +109 -0
  370. data/rspec-mocks/upstream/lib/rspec/mocks/any_instance/expect_chain_chain.rb +35 -0
  371. data/rspec-mocks/upstream/lib/rspec/mocks/any_instance/expectation_chain.rb +48 -0
  372. data/rspec-mocks/upstream/lib/rspec/mocks/any_instance/message_chains.rb +85 -0
  373. data/rspec-mocks/upstream/lib/rspec/mocks/any_instance/proxy.rb +116 -0
  374. data/rspec-mocks/upstream/lib/rspec/mocks/any_instance/recorder.rb +267 -0
  375. data/rspec-mocks/upstream/lib/rspec/mocks/any_instance/stub_chain.rb +45 -0
  376. data/rspec-mocks/upstream/lib/rspec/mocks/any_instance/stub_chain_chain.rb +27 -0
  377. data/rspec-mocks/upstream/lib/rspec/mocks/argument_list_matcher.rb +72 -0
  378. data/rspec-mocks/upstream/lib/rspec/mocks/argument_matchers.rb +282 -0
  379. data/rspec-mocks/upstream/lib/rspec/mocks/configuration.rb +157 -0
  380. data/rspec-mocks/upstream/lib/rspec/mocks/error_generator.rb +253 -0
  381. data/rspec-mocks/upstream/lib/rspec/mocks/example_methods.rb +379 -0
  382. data/rspec-mocks/upstream/lib/rspec/mocks/instance_method_stasher.rb +135 -0
  383. data/rspec-mocks/upstream/lib/rspec/mocks/marshal_extension.rb +41 -0
  384. data/rspec-mocks/upstream/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
  385. data/rspec-mocks/upstream/lib/rspec/mocks/matchers/have_received.rb +121 -0
  386. data/rspec-mocks/upstream/lib/rspec/mocks/matchers/receive.rb +106 -0
  387. data/rspec-mocks/upstream/lib/rspec/mocks/matchers/receive_message_chain.rb +66 -0
  388. data/rspec-mocks/upstream/lib/rspec/mocks/matchers/receive_messages.rb +71 -0
  389. data/rspec-mocks/upstream/lib/rspec/mocks/message_chain.rb +91 -0
  390. data/rspec-mocks/upstream/lib/rspec/mocks/message_expectation.rb +694 -0
  391. data/rspec-mocks/upstream/lib/rspec/mocks/method_double.rb +260 -0
  392. data/rspec-mocks/upstream/lib/rspec/mocks/method_reference.rb +155 -0
  393. data/rspec-mocks/upstream/lib/rspec/mocks/mutate_const.rb +324 -0
  394. data/rspec-mocks/upstream/lib/rspec/mocks/object_reference.rb +91 -0
  395. data/rspec-mocks/upstream/lib/rspec/mocks/order_group.rb +81 -0
  396. data/rspec-mocks/upstream/lib/rspec/mocks/proxy.rb +431 -0
  397. data/rspec-mocks/upstream/lib/rspec/mocks/space.rb +221 -0
  398. data/rspec-mocks/upstream/lib/rspec/mocks/standalone.rb +3 -0
  399. data/rspec-mocks/upstream/lib/rspec/mocks/syntax.rb +329 -0
  400. data/rspec-mocks/upstream/lib/rspec/mocks/targets.rb +97 -0
  401. data/rspec-mocks/upstream/lib/rspec/mocks/test_double.rb +135 -0
  402. data/rspec-mocks/upstream/lib/rspec/mocks/verifying_double.rb +127 -0
  403. data/rspec-mocks/upstream/lib/rspec/mocks/verifying_message_expecation.rb +62 -0
  404. data/rspec-mocks/upstream/lib/rspec/mocks/verifying_proxy.rb +171 -0
  405. data/rspec-mocks/upstream/lib/rspec/mocks/version.rb +9 -0
  406. data/rspec-mocks/upstream/maintenance-branch +1 -0
  407. data/rspec-mocks/upstream/rspec-mocks.gemspec +44 -0
  408. data/rspec-mocks/upstream/script/clone_all_rspec_repos +24 -0
  409. data/rspec-mocks/upstream/script/functions.sh +168 -0
  410. data/rspec-mocks/upstream/script/ignores +55 -0
  411. data/rspec-mocks/upstream/script/list_method_cache_busters.sh +22 -0
  412. data/rspec-mocks/upstream/script/run_build +28 -0
  413. data/rspec-support/upstream/.gitignore +19 -0
  414. data/rspec-support/upstream/.rspec +4 -0
  415. data/rspec-support/upstream/.rubocop.yml +1 -0
  416. data/rspec-support/upstream/.rubocop_rspec_base.yml +130 -0
  417. data/rspec-support/upstream/.travis.yml +35 -0
  418. data/rspec-support/upstream/Changelog.md +77 -0
  419. data/rspec-support/upstream/Gemfile +21 -0
  420. data/rspec-support/upstream/LICENSE.txt +22 -0
  421. data/rspec-support/upstream/README.md +17 -0
  422. data/rspec-support/upstream/Rakefile +30 -0
  423. data/rspec-support/upstream/benchmarks/caller.rb +81 -0
  424. data/rspec-support/upstream/lib/rspec/support.rb +76 -0
  425. data/rspec-support/upstream/lib/rspec/support/caller_filter.rb +63 -0
  426. data/rspec-support/upstream/lib/rspec/support/differ.rb +214 -0
  427. data/rspec-support/upstream/lib/rspec/support/directory_maker.rb +61 -0
  428. data/rspec-support/upstream/lib/rspec/support/encoded_string.rb +69 -0
  429. data/rspec-support/upstream/lib/rspec/support/fuzzy_matcher.rb +48 -0
  430. data/rspec-support/upstream/lib/rspec/support/hunk_generator.rb +47 -0
  431. data/rspec-support/upstream/lib/rspec/support/matcher_definition.rb +31 -0
  432. data/rspec-support/upstream/lib/rspec/support/method_signature_verifier.rb +272 -0
  433. data/rspec-support/upstream/lib/rspec/support/os.rb +18 -0
  434. data/rspec-support/upstream/lib/rspec/support/recursive_const_methods.rb +76 -0
  435. data/rspec-support/upstream/lib/rspec/support/ruby_features.rb +45 -0
  436. data/rspec-support/upstream/lib/rspec/support/spec.rb +72 -0
  437. data/rspec-support/upstream/lib/rspec/support/spec/deprecation_helpers.rb +60 -0
  438. data/rspec-support/upstream/lib/rspec/support/spec/formatting_support.rb +9 -0
  439. data/rspec-support/upstream/lib/rspec/support/spec/in_sub_process.rb +43 -0
  440. data/rspec-support/upstream/lib/rspec/support/spec/prevent_load_time_warnings.rb +44 -0
  441. data/rspec-support/upstream/lib/rspec/support/spec/shell_out.rb +69 -0
  442. data/rspec-support/upstream/lib/rspec/support/spec/stderr_splitter.rb +52 -0
  443. data/rspec-support/upstream/lib/rspec/support/spec/with_isolated_directory.rb +9 -0
  444. data/rspec-support/upstream/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
  445. data/rspec-support/upstream/lib/rspec/support/version.rb +7 -0
  446. data/rspec-support/upstream/lib/rspec/support/version_checker.rb +53 -0
  447. data/rspec-support/upstream/lib/rspec/support/warnings.rb +39 -0
  448. data/rspec-support/upstream/maintenance-branch +1 -0
  449. data/rspec-support/upstream/rspec-support.gemspec +34 -0
  450. data/rspec-support/upstream/script/clone_all_rspec_repos +24 -0
  451. data/rspec-support/upstream/script/functions.sh +168 -0
  452. data/rspec-support/upstream/script/run_build +28 -0
  453. data/rspec/upstream/.document +2 -0
  454. data/rspec/upstream/.gitignore +11 -0
  455. data/rspec/upstream/Gemfile +7 -0
  456. data/rspec/upstream/License.txt +24 -0
  457. data/rspec/upstream/README.md +47 -0
  458. data/rspec/upstream/Rakefile +25 -0
  459. data/rspec/upstream/certs/rspec.pem +22 -0
  460. data/rspec/upstream/lib/rspec.rb +3 -0
  461. data/rspec/upstream/lib/rspec/version.rb +5 -0
  462. data/rspec/upstream/rspec.gemspec +40 -0
  463. metadata +462 -53
  464. data/rspec-core/spec/files_to_exclude.txt +0 -12
  465. data/rspec-core/spec/filters.rb +0 -211
  466. data/rspec-core/spec/fixes/missing_constants.rb +0 -34
  467. data/rspec-core/spec/fixes/sandboxing.rb +0 -72
  468. data/rspec-core/spec/fixes/shared_examples.rb +0 -6
  469. data/rspec-core/spec/requires.rb +0 -41
  470. data/rspec-expectations/spec/files_to_exclude.txt +0 -2
  471. data/rspec-expectations/spec/filters.rb +0 -188
  472. data/rspec-expectations/spec/fixes/missing_constants.rb +0 -10
  473. data/rspec-expectations/spec/fixes/shared_examples.rb +0 -15
  474. data/rspec-expectations/spec/requires.rb +0 -32
  475. data/rspec-mocks/spec/files_to_exclude.txt +0 -11
  476. data/rspec-mocks/spec/filters.rb +0 -98
  477. data/rspec-mocks/spec/fixes/shared_examples.rb +0 -6
  478. data/rspec-mocks/spec/requires.rb +0 -22
  479. data/rspec-support/spec/files_to_exclude.txt +0 -26
  480. data/rspec-support/spec/filters.rb +0 -17
  481. data/rspec-support/spec/fixes/missing_constants.rb +0 -3
  482. data/rspec-support/spec/fixes/shared_examples.rb +0 -4
  483. data/rspec-support/spec/requires.rb +0 -30
  484. data/spec-opal-passing/spec_helper.rb +0 -3
  485. data/spec-opal-passing/tautology_spec.rb +0 -21
  486. data/spec-opal-rspec/core/example_group_spec.rb +0 -145
  487. data/spec-opal-rspec/core/failed_example_notification_spec.rb +0 -31
  488. data/spec-opal-rspec/core/hooks_spec.rb +0 -113
  489. data/spec-opal-rspec/core/memoized_helpers_spec.rb +0 -36
  490. data/spec-opal-rspec/core/metadata_spec.rb +0 -48
  491. data/spec-opal-rspec/expectations/be_instance_of_spec.rb +0 -11
  492. data/spec-opal-rspec/expectations/dsl_spec.rb +0 -66
  493. data/spec-opal-rspec/expectations/expectation_target_spec.rb +0 -21
  494. data/spec-opal-rspec/expectations/yield_spec.rb +0 -11
  495. data/spec-opal/after_hooks_spec.rb +0 -142
  496. data/spec-opal/around_hooks_spec.rb +0 -77
  497. data/spec-opal/async_spec.rb +0 -134
  498. data/spec-opal/before_hooks_spec.rb +0 -185
  499. data/spec-opal/browser-formatter/opal_browser_formatter_spec.rb +0 -14
  500. data/spec-opal/example_spec.rb +0 -176
  501. data/spec-opal/legacy_async_spec.rb +0 -189
  502. data/spec-opal/matchers_spec.rb +0 -207
  503. data/spec-opal/mock_spec.rb +0 -65
  504. data/spec-opal/other/color_on_by_default_spec.rb +0 -9
  505. data/spec-opal/other/dummy_spec.rb +0 -5
  506. data/spec-opal/other/formatter_dependency.rb +0 -3
  507. data/spec-opal/other/ignored_spec.opal +0 -5
  508. data/spec-opal/other/test_formatter.rb +0 -9
  509. data/spec-opal/should_syntax_spec.rb +0 -19
  510. data/spec-opal/skip_pending_spec.rb +0 -45
  511. data/spec-opal/spec_helper.rb +0 -8
  512. data/spec-opal/sprockets_runner_js_errors.rb.erb +0 -18
  513. data/spec-opal/subject_spec.rb +0 -89
@@ -1,12 +0,0 @@
1
- #**/core/configuration_spec.rb
2
- **/shared_example_group_spec.rb
3
- **/rspec/core/configuration_options_spec.rb
4
- **/html_formatter_spec.rb
5
- **/snippet_extractor_spec.rb
6
- **/rake_task_spec.rb
7
- **/option_parser_spec.rb
8
- **/runner_spec.rb
9
- **/backtrace_formatter_spec.rb
10
- **/ordering_spec.rb
11
- **/random_spec.rb
12
- **/project_initializer_spec.rb
@@ -1,211 +0,0 @@
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
@@ -1,34 +0,0 @@
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
@@ -1,72 +0,0 @@
1
- RSpec.configure do |c|
2
- c.around { |ex| Sandboxing.sandboxed { ex.run } }
3
- end
4
-
5
- class NullObject
6
- private
7
- def method_missing(method, *args, &block)
8
- # ignore
9
- end
10
- end
11
-
12
- module Sandboxing
13
- def self.sandboxed(&block)
14
- # No load path in Opal
15
- # orig_load_path = $LOAD_PATH.dup
16
- orig_config = RSpec.configuration
17
- orig_world = RSpec.world
18
- orig_example = RSpec.current_example
19
- new_config = RSpec::Core::Configuration.new
20
- new_config.expose_dsl_globally = false
21
- new_config.expecting_with_rspec = true
22
- new_world = RSpec::Core::World.new(new_config)
23
- RSpec.configuration = new_config
24
- RSpec.world = new_world
25
- object = Object.new
26
- object.extend(RSpec::Core::SharedExampleGroup)
27
-
28
- # Before https://github.com/opal/opal/commit/f73f766b261b881e6cd3256287b8afa28af99693, the stock class_exec won't work in Opal
29
- # (class << RSpec::Core::ExampleGroup; self; end).class_exec do
30
- # alias_method :orig_run, :run
31
- # def run(reporter=nil)
32
- # RSpec.current_example = nil
33
- # orig_run(reporter || NullObject.new)
34
- # end
35
- # end
36
-
37
- RSpec::Core::ExampleGroup.class_eval do
38
- class << self
39
- alias_method :orig_run, :run
40
-
41
- def run(reporter=nil)
42
- RSpec.current_example = nil
43
- orig_run(reporter || NullObject.new)
44
- end
45
- end
46
- end
47
-
48
- RSpec::Mocks.with_temporary_scope do
49
- object.instance_exec(&block)
50
- end
51
- ensure
52
- # See above comment
53
- # (class << RSpec::Core::ExampleGroup; self; end).class_exec do
54
- # remove_method :run
55
- # alias_method :run, :orig_run
56
- # remove_method :orig_run
57
- # end
58
- RSpec::Core::ExampleGroup.class_eval do
59
- class << self
60
- remove_method :run
61
- alias_method :run, :orig_run
62
- remove_method :orig_run
63
- end
64
- end
65
-
66
- RSpec.configuration = orig_config
67
- RSpec.world = orig_world
68
- RSpec.current_example = orig_example
69
- # No load path in Opal
70
- # $LOAD_PATH.replace(orig_load_path)
71
- end
72
- end
@@ -1,6 +0,0 @@
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
@@ -1,41 +0,0 @@
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
@@ -1,2 +0,0 @@
1
- # opal-minispec integration not working yet
2
- **/minitest_integration_spec.rb
@@ -1,188 +0,0 @@
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