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
@@ -0,0 +1,27 @@
1
+ require 'benchmark'
2
+ require 'rspec/expectations'
3
+
4
+ include RSpec::Expectations
5
+ include RSpec::Matchers
6
+
7
+ RSpec::Matchers.define :eq_using_dsl do |expected|
8
+ match do |actual|
9
+ actual == expected
10
+ end
11
+ end
12
+
13
+ n = 10000
14
+
15
+ Benchmark.benchmark do |bm|
16
+ 3.times do
17
+ bm.report do
18
+ n.times do
19
+ eq_using_dsl(5).tap do |m|
20
+ m.description
21
+ m.failure_message_for_should
22
+ m.failure_message_for_should_not
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,9 @@
1
+ describe "something" do
2
+ it "does something that passes" do
3
+ 1.should eq(1)
4
+ end
5
+
6
+ it "does something that fails" do
7
+ 1.should eq(2)
8
+ end
9
+ end
@@ -0,0 +1,39 @@
1
+ require 'benchmark'
2
+
3
+ n = 10_000
4
+
5
+ class Foo; end
6
+ module Bar; end
7
+
8
+
9
+ Benchmark.benchmark do |bm|
10
+ puts "Class.new(Foo)"
11
+
12
+ 3.times do
13
+ bm.report do
14
+ n.times do
15
+ Class.new(Foo)
16
+ end
17
+ end
18
+ end
19
+
20
+ puts "Class.new { include Bar }"
21
+
22
+ 3.times do
23
+ bm.report do
24
+ n.times do
25
+ Class.new { include Bar }
26
+ end
27
+ end
28
+ end
29
+ end
30
+
31
+ # $ ruby benchmarks/include_v_superclass.rb
32
+ # Class.new(Foo)
33
+ # 0.030000 0.000000 0.030000 ( 0.033536)
34
+ # 0.020000 0.000000 0.020000 ( 0.022077)
35
+ # 0.040000 0.010000 0.050000 ( 0.035813)
36
+ # Class.new { include Bar }
37
+ # 0.040000 0.000000 0.040000 ( 0.041427)
38
+ # 0.040000 0.000000 0.040000 ( 0.039019)
39
+ # 0.030000 0.000000 0.030000 ( 0.037018)
@@ -0,0 +1,147 @@
1
+ $LOAD_PATH.unshift "./lib"
2
+ require 'benchmark'
3
+ require 'rspec/expectations'
4
+ require 'securerandom'
5
+
6
+ extend RSpec::Matchers
7
+
8
+ sizes = [10, 100, 1000, 2000, 4000]
9
+
10
+ puts "rspec-expectations #{RSpec::Expectations::Version::STRING} -- #{RUBY_ENGINE}/#{RUBY_VERSION}"
11
+
12
+ puts
13
+ puts "Failing `match_array` expectation with lists of distinct strings having 1 unmatched pair"
14
+ puts
15
+
16
+ Benchmark.benchmark do |bm|
17
+ sizes.each do |size|
18
+ actual = Array.new(size) { SecureRandom.uuid }
19
+
20
+ expecteds = Array.new(3) do
21
+ array = actual.shuffle
22
+ # replace one entry with a different value
23
+ array[rand(array.length)] = SecureRandom.uuid
24
+ array
25
+ end
26
+
27
+ expecteds.each do |expected|
28
+ bm.report("#{size.to_s.rjust(5)} items") do
29
+ begin
30
+ expect(actual).to match_array(expected)
31
+ rescue RSpec::Expectations::ExpectationNotMetError
32
+ else
33
+ raise "did not fail but should have"
34
+ end
35
+ end
36
+ end
37
+ end
38
+ end
39
+
40
+ __END__
41
+
42
+ Before new composable matchers algo:
43
+
44
+ 10 items 0.000000 0.000000 0.000000 ( 0.000813)
45
+ 10 items 0.000000 0.000000 0.000000 ( 0.000099)
46
+ 10 items 0.000000 0.000000 0.000000 ( 0.000127)
47
+ 100 items 0.000000 0.000000 0.000000 ( 0.000707)
48
+ 100 items 0.000000 0.000000 0.000000 ( 0.000612)
49
+ 100 items 0.000000 0.000000 0.000000 ( 0.000600)
50
+ 1000 items 0.040000 0.000000 0.040000 ( 0.038679)
51
+ 1000 items 0.040000 0.000000 0.040000 ( 0.041379)
52
+ 1000 items 0.040000 0.000000 0.040000 ( 0.036680)
53
+ 2000 items 0.130000 0.000000 0.130000 ( 0.131681)
54
+ 2000 items 0.120000 0.000000 0.120000 ( 0.123664)
55
+ 2000 items 0.130000 0.000000 0.130000 ( 0.128799)
56
+ 4000 items 0.490000 0.000000 0.490000 ( 0.489446)
57
+ 4000 items 0.510000 0.000000 0.510000 ( 0.511915)
58
+ 4000 items 0.480000 0.010000 0.490000 ( 0.477616)
59
+
60
+ After:
61
+
62
+ 10 items 0.000000 0.000000 0.000000 ( 0.001382)
63
+ 10 items 0.000000 0.000000 0.000000 ( 0.000156)
64
+ 10 items 0.000000 0.000000 0.000000 ( 0.000161)
65
+ 100 items 0.010000 0.000000 0.010000 ( 0.005052)
66
+ 100 items 0.000000 0.000000 0.000000 ( 0.004991)
67
+ 100 items 0.010000 0.000000 0.010000 ( 0.004984)
68
+ 1000 items 0.470000 0.000000 0.470000 ( 0.470043)
69
+ 1000 items 0.500000 0.000000 0.500000 ( 0.499316)
70
+ 1000 items 0.490000 0.000000 0.490000 ( 0.488582)
71
+ 2000 items 1.910000 0.000000 1.910000 ( 1.917279)
72
+ 2000 items 1.930000 0.010000 1.940000 ( 1.931002)
73
+ 2000 items 1.920000 0.000000 1.920000 ( 1.928989)
74
+ 4000 items 7.860000 0.010000 7.870000 ( 7.881995)
75
+ 4000 items 7.980000 0.010000 7.990000 ( 8.003643)
76
+ 4000 items 8.000000 0.010000 8.010000 ( 8.031382)
77
+
78
+ With "smaller subproblem" optimization: (about 25% slower)
79
+
80
+ 10 items 0.010000 0.000000 0.010000 ( 0.001331)
81
+ 10 items 0.000000 0.000000 0.000000 ( 0.000175)
82
+ 10 items 0.000000 0.000000 0.000000 ( 0.000165)
83
+ 100 items 0.000000 0.000000 0.000000 ( 0.006137)
84
+ 100 items 0.010000 0.000000 0.010000 ( 0.005880)
85
+ 100 items 0.000000 0.000000 0.000000 ( 0.005950)
86
+ 1000 items 0.630000 0.000000 0.630000 ( 0.634294)
87
+ 1000 items 0.620000 0.000000 0.620000 ( 0.622427)
88
+ 1000 items 0.640000 0.000000 0.640000 ( 0.641505)
89
+ 2000 items 2.420000 0.000000 2.420000 ( 2.419876)
90
+ 2000 items 2.430000 0.000000 2.430000 ( 2.442544)
91
+ 2000 items 2.380000 0.010000 2.390000 ( 2.385106)
92
+ 4000 items 9.780000 0.010000 9.790000 ( 9.811499)
93
+ 4000 items 9.670000 0.010000 9.680000 ( 9.688799)
94
+ 4000 items 9.710000 0.010000 9.720000 ( 9.743054)
95
+
96
+ With "implement `values_match?` ourselves" optimization: (more than twice as fast!)
97
+
98
+ 10 items 0.000000 0.000000 0.000000 ( 0.001189)
99
+ 10 items 0.000000 0.000000 0.000000 ( 0.000149)
100
+ 10 items 0.000000 0.000000 0.000000 ( 0.000130)
101
+ 100 items 0.000000 0.000000 0.000000 ( 0.002927)
102
+ 100 items 0.000000 0.000000 0.000000 ( 0.002856)
103
+ 100 items 0.010000 0.000000 0.010000 ( 0.003028)
104
+ 1000 items 0.250000 0.000000 0.250000 ( 0.245146)
105
+ 1000 items 0.240000 0.000000 0.240000 ( 0.246291)
106
+ 1000 items 0.320000 0.000000 0.320000 ( 0.315192)
107
+ 2000 items 1.120000 0.000000 1.120000 ( 1.128162)
108
+ 2000 items 1.030000 0.000000 1.030000 ( 1.034982)
109
+ 2000 items 1.060000 0.000000 1.060000 ( 1.063870)
110
+ 4000 items 4.530000 0.000000 4.530000 ( 4.556346)
111
+ 4000 items 4.400000 0.010000 4.410000 ( 4.414447)
112
+ 4000 items 4.410000 0.000000 4.410000 ( 4.417440)
113
+
114
+ With e === a || a == e || values_match?(e,a)
115
+ 10 items 0.000000 0.000000 0.000000 ( 0.001466)
116
+ 10 items 0.000000 0.000000 0.000000 ( 0.000258)
117
+ 10 items 0.000000 0.000000 0.000000 ( 0.000251)
118
+ 100 items 0.020000 0.000000 0.020000 ( 0.012369)
119
+ 100 items 0.010000 0.000000 0.010000 ( 0.012345)
120
+ 100 items 0.010000 0.000000 0.010000 ( 0.012744)
121
+ 1000 items 1.180000 0.000000 1.180000 ( 1.187754)
122
+ 1000 items 1.200000 0.000000 1.200000 ( 1.198681)
123
+ 1000 items 1.210000 0.000000 1.210000 ( 1.210159)
124
+ 2000 items 4.760000 0.000000 4.760000 ( 4.764911)
125
+ 2000 items 4.760000 0.000000 4.760000 ( 4.757022)
126
+ 2000 items 4.760000 0.000000 4.760000 ( 4.771776)
127
+ 4000 items 19.070000 0.010000 19.080000 ( 19.077930)
128
+ 4000 items 19.090000 0.010000 19.100000 ( 19.104171)
129
+ 4000 items 19.260000 0.010000 19.270000 ( 19.289653)
130
+
131
+ With values_match?(e,a)
132
+
133
+ 10 items 0.000000 0.000000 0.000000 ( 0.001462)
134
+ 10 items 0.000000 0.000000 0.000000 ( 0.000253)
135
+ 10 items 0.000000 0.000000 0.000000 ( 0.000244)
136
+ 100 items 0.010000 0.000000 0.010000 ( 0.011913)
137
+ 100 items 0.010000 0.000000 0.010000 ( 0.011858)
138
+ 100 items 0.020000 0.000000 0.020000 ( 0.011992)
139
+ 1000 items 1.210000 0.000000 1.210000 ( 1.226960)
140
+ 1000 items 1.140000 0.000000 1.140000 ( 1.147002)
141
+ 1000 items 1.180000 0.000000 1.180000 ( 1.194010)
142
+ 2000 items 4.690000 0.010000 4.700000 ( 4.740503)
143
+ 2000 items 4.680000 0.000000 4.680000 ( 4.676084)
144
+ 2000 items 4.570000 0.000000 4.570000 ( 4.581262)
145
+ 4000 items 18.450000 0.010000 18.460000 ( 18.532578)
146
+ 4000 items 18.400000 0.010000 18.410000 ( 18.520454)
147
+ 4000 items 18.490000 0.020000 18.510000 ( 18.592491)
@@ -0,0 +1,122 @@
1
+ $LOAD_PATH.unshift "./lib"
2
+ require 'benchmark'
3
+ require 'rspec/expectations'
4
+
5
+ extend RSpec::Matchers
6
+
7
+ sizes = [10, 100, 1000]
8
+
9
+ puts "rspec-expectations #{RSpec::Expectations::Version::STRING} -- #{RUBY_ENGINE}/#{RUBY_VERSION}"
10
+
11
+ puts
12
+ puts "Failing `match_array` expectation with lists of integers (w/dups) having 1 unmatched pair"
13
+ puts
14
+
15
+ Benchmark.benchmark do |bm|
16
+ sizes.each do |size|
17
+ actual = Array.new(size) { rand(size / 2) }
18
+ expecteds = Array.new(3) do
19
+ array = actual.shuffle
20
+ array[rand(array.length)] = 9999999
21
+ array
22
+ end
23
+
24
+ expecteds.each do |expected|
25
+ bm.report("#{size.to_s.rjust(5)} items") do
26
+ begin
27
+ expect(actual).to match_array(expected)
28
+ rescue RSpec::Expectations::ExpectationNotMetError
29
+ else
30
+ raise "did not fail but should have"
31
+ end
32
+ end
33
+ end
34
+ end
35
+ end
36
+
37
+ __END__
38
+
39
+ Before new composable matchers algo:
40
+
41
+ 10 items 0.000000 0.000000 0.000000 ( 0.000711)
42
+ 10 items 0.000000 0.000000 0.000000 ( 0.000079)
43
+ 10 items 0.000000 0.000000 0.000000 ( 0.000080)
44
+ 20 items 0.000000 0.000000 0.000000 ( 0.000105)
45
+ 20 items 0.000000 0.000000 0.000000 ( 0.000122)
46
+ 20 items 0.000000 0.000000 0.000000 ( 0.000101)
47
+ 25 items 0.000000 0.000000 0.000000 ( 0.000125)
48
+ 25 items 0.000000 0.000000 0.000000 ( 0.000137)
49
+ 25 items 0.000000 0.000000 0.000000 ( 0.000116)
50
+
51
+ After:
52
+
53
+ This varies widly based on the inputs. One run:
54
+
55
+ 10 items 0.010000 0.000000 0.010000 ( 0.005884)
56
+ 10 items 0.000000 0.000000 0.000000 ( 0.004429)
57
+ 10 items 0.000000 0.000000 0.000000 ( 0.004733)
58
+ 20 items 2.040000 0.000000 2.040000 ( 2.049461)
59
+ 20 items 2.080000 0.010000 2.090000 ( 2.087983)
60
+ 20 items 1.950000 0.000000 1.950000 ( 1.950013)
61
+ 25 items 10.240000 0.020000 10.260000 ( 10.280575)
62
+ 25 items 10.390000 0.010000 10.400000 ( 10.433754)
63
+ 25 items 10.250000 0.020000 10.270000 ( 10.311604)
64
+
65
+ Another run:
66
+
67
+ 10 items 0.010000 0.010000 0.020000 ( 0.015355)
68
+ 10 items 0.010000 0.000000 0.010000 ( 0.010347)
69
+ 10 items 0.020000 0.000000 0.020000 ( 0.013657)
70
+ 20 items 36.140000 0.030000 36.170000 ( 36.236651)
71
+ 20 items 36.010000 0.040000 36.050000 ( 36.098006)
72
+ 20 items 35.990000 0.030000 36.020000 ( 36.071397)
73
+
74
+ (I lost patience and didn't wait for it to finish 25 items...)
75
+
76
+ With "smaller subproblem" optimization: (way faster!)
77
+
78
+ 10 items 0.000000 0.000000 0.000000 ( 0.001411)
79
+ 10 items 0.000000 0.000000 0.000000 ( 0.000615)
80
+ 10 items 0.000000 0.000000 0.000000 ( 0.000413)
81
+ 20 items 0.000000 0.000000 0.000000 ( 0.000947)
82
+ 20 items 0.000000 0.000000 0.000000 ( 0.001725)
83
+ 20 items 0.000000 0.000000 0.000000 ( 0.001345)
84
+ 25 items 0.010000 0.000000 0.010000 ( 0.002348)
85
+ 25 items 0.000000 0.000000 0.000000 ( 0.002836)
86
+ 25 items 0.000000 0.000000 0.000000 ( 0.002721)
87
+
88
+ With "implement `values_match?` ourselves" optimization: (about twice as fast!)
89
+
90
+ 10 items 0.000000 0.000000 0.000000 ( 0.002450)
91
+ 10 items 0.000000 0.000000 0.000000 ( 0.000857)
92
+ 10 items 0.000000 0.000000 0.000000 ( 0.000883)
93
+ 100 items 0.040000 0.000000 0.040000 ( 0.043661)
94
+ 100 items 0.060000 0.000000 0.060000 ( 0.053046)
95
+ 100 items 0.040000 0.010000 0.050000 ( 0.051760)
96
+ 1000 items 3.620000 0.060000 3.680000 ( 3.688289)
97
+ 1000 items 2.600000 0.020000 2.620000 ( 2.628405)
98
+ 1000 items 4.660000 0.040000 4.700000 ( 4.712196)
99
+
100
+ With e === a || a == e || values_match?(e,a)
101
+
102
+ 10 items 0.000000 0.000000 0.000000 ( 0.001992)
103
+ 10 items 0.000000 0.000000 0.000000 ( 0.000821)
104
+ 10 items 0.000000 0.000000 0.000000 ( 0.000794)
105
+ 100 items 0.060000 0.000000 0.060000 ( 0.068597)
106
+ 100 items 0.060000 0.000000 0.060000 ( 0.056409)
107
+ 100 items 0.070000 0.010000 0.080000 ( 0.072950)
108
+ 1000 items 4.090000 0.100000 4.190000 ( 4.218107)
109
+ 1000 items 3.000000 0.050000 3.050000 ( 3.070019)
110
+ 1000 items 6.040000 0.070000 6.110000 ( 6.102311)
111
+
112
+ With values_match?(e,a)
113
+
114
+ 10 items 0.000000 0.000000 0.000000 ( 0.002177)
115
+ 10 items 0.000000 0.000000 0.000000 ( 0.001201)
116
+ 10 items 0.000000 0.000000 0.000000 ( 0.000928)
117
+ 100 items 0.050000 0.000000 0.050000 ( 0.051785)
118
+ 100 items 0.040000 0.000000 0.040000 ( 0.032323)
119
+ 100 items 0.040000 0.000000 0.040000 ( 0.046934)
120
+ 1000 items 4.050000 0.100000 4.150000 ( 4.175914)
121
+ 1000 items 3.040000 0.050000 3.090000 ( 3.130656)
122
+ 1000 items 4.110000 0.050000 4.160000 ( 4.161170)
@@ -0,0 +1,154 @@
1
+ $LOAD_PATH.unshift "./lib"
2
+ require 'benchmark'
3
+ require 'rspec/expectations'
4
+ require 'securerandom'
5
+
6
+ extend RSpec::Matchers
7
+
8
+ sizes = [10, 100, 1000, 2000, 4000]
9
+
10
+ puts "rspec-expectations #{RSpec::Expectations::Version::STRING} -- #{RUBY_ENGINE}/#{RUBY_VERSION}"
11
+
12
+ puts
13
+ puts "Passing `match_array` expectation with lists of distinct strings"
14
+ puts
15
+
16
+ Benchmark.benchmark do |bm|
17
+ sizes.each do |size|
18
+ actual = Array.new(size) { SecureRandom.uuid }
19
+ expecteds = Array.new(3) { actual.shuffle }
20
+ expecteds.each do |expected|
21
+ bm.report("#{size.to_s.rjust(5)} items") do
22
+ expect(actual).to match_array(expected)
23
+ end
24
+ end
25
+ end
26
+ end
27
+
28
+ __END__
29
+
30
+ Before new composable matchers algo:
31
+
32
+ 10 items 0.000000 0.000000 0.000000 ( 0.000857)
33
+ 10 items 0.000000 0.000000 0.000000 ( 0.000029)
34
+ 10 items 0.000000 0.000000 0.000000 ( 0.000018)
35
+ 100 items 0.000000 0.000000 0.000000 ( 0.000334)
36
+ 100 items 0.000000 0.000000 0.000000 ( 0.000372)
37
+ 100 items 0.000000 0.000000 0.000000 ( 0.000331)
38
+ 1000 items 0.030000 0.000000 0.030000 ( 0.029778)
39
+ 1000 items 0.030000 0.000000 0.030000 ( 0.030566)
40
+ 1000 items 0.030000 0.000000 0.030000 ( 0.033150)
41
+ 2000 items 0.140000 0.000000 0.140000 ( 0.141719)
42
+ 2000 items 0.120000 0.000000 0.120000 ( 0.124348)
43
+ 2000 items 0.120000 0.000000 0.120000 ( 0.121202)
44
+ 4000 items 0.490000 0.000000 0.490000 ( 0.500631)
45
+ 4000 items 0.470000 0.000000 0.470000 ( 0.468477)
46
+ 4000 items 0.490000 0.010000 0.500000 ( 0.492957)
47
+
48
+ After:
49
+
50
+ 10 items 0.000000 0.000000 0.000000 ( 0.001165)
51
+ 10 items 0.000000 0.000000 0.000000 ( 0.000131)
52
+ 10 items 0.000000 0.000000 0.000000 ( 0.000127)
53
+ 100 items 0.000000 0.000000 0.000000 ( 0.005636)
54
+ 100 items 0.010000 0.000000 0.010000 ( 0.004881)
55
+ 100 items 0.000000 0.000000 0.000000 ( 0.004676)
56
+ 1000 items 0.500000 0.000000 0.500000 ( 0.505676)
57
+ 1000 items 0.490000 0.000000 0.490000 ( 0.483469)
58
+ 1000 items 0.490000 0.000000 0.490000 ( 0.497841)
59
+ 2000 items 1.950000 0.000000 1.950000 ( 1.966324)
60
+ 2000 items 1.970000 0.000000 1.970000 ( 1.975567)
61
+ 2000 items 1.900000 0.000000 1.900000 ( 1.902315)
62
+ 4000 items 7.650000 0.010000 7.660000 ( 7.672907)
63
+ 4000 items 7.720000 0.010000 7.730000 ( 7.735615)
64
+ 4000 items 7.730000 0.000000 7.730000 ( 7.756837)
65
+
66
+ With "smaller subproblem" optimization: (about 20% slower)
67
+
68
+ 10 items 0.000000 0.000000 0.000000 ( 0.001099)
69
+ 10 items 0.000000 0.000000 0.000000 ( 0.000110)
70
+ 10 items 0.000000 0.000000 0.000000 ( 0.000102)
71
+ 100 items 0.010000 0.000000 0.010000 ( 0.005462)
72
+ 100 items 0.010000 0.000000 0.010000 ( 0.005433)
73
+ 100 items 0.000000 0.000000 0.000000 ( 0.005409)
74
+ 1000 items 0.570000 0.000000 0.570000 ( 0.569302)
75
+ 1000 items 0.570000 0.000000 0.570000 ( 0.577496)
76
+ 1000 items 0.560000 0.000000 0.560000 ( 0.555496)
77
+ 2000 items 2.330000 0.000000 2.330000 ( 2.325537)
78
+ 2000 items 2.450000 0.000000 2.450000 ( 2.464415)
79
+ 2000 items 2.470000 0.000000 2.470000 ( 2.472999)
80
+ 4000 items 9.380000 0.010000 9.390000 ( 9.406678)
81
+ 4000 items 9.320000 0.010000 9.330000 ( 9.340727)
82
+ 4000 items 9.330000 0.010000 9.340000 ( 9.358326)
83
+
84
+ With "implement `values_match?` ourselves" optimization: (about twice as fast!)
85
+
86
+ 10 items 0.000000 0.000000 0.000000 ( 0.001113)
87
+ 10 items 0.000000 0.000000 0.000000 ( 0.000074)
88
+ 10 items 0.000000 0.000000 0.000000 ( 0.000071)
89
+ 100 items 0.000000 0.000000 0.000000 ( 0.002558)
90
+ 100 items 0.010000 0.000000 0.010000 ( 0.002528)
91
+ 100 items 0.000000 0.000000 0.000000 ( 0.002555)
92
+ 1000 items 0.300000 0.000000 0.300000 ( 0.306318)
93
+ 1000 items 0.260000 0.000000 0.260000 ( 0.253526)
94
+ 1000 items 0.240000 0.000000 0.240000 ( 0.246096)
95
+ 2000 items 1.070000 0.000000 1.070000 ( 1.065989)
96
+ 2000 items 1.040000 0.000000 1.040000 ( 1.047495)
97
+ 2000 items 1.080000 0.000000 1.080000 ( 1.078392)
98
+ 4000 items 4.520000 0.000000 4.520000 ( 4.529568)
99
+ 4000 items 4.570000 0.010000 4.580000 ( 4.597785)
100
+ 4000 items 5.030000 0.010000 5.040000 ( 5.079452)
101
+
102
+ With `match_when_sorted?` optimization: (many orders of magnitude faster!)
103
+
104
+ 10 items 0.010000 0.000000 0.010000 ( 0.002044)
105
+ 10 items 0.000000 0.000000 0.000000 ( 0.000038)
106
+ 10 items 0.000000 0.000000 0.000000 ( 0.000031)
107
+ 100 items 0.000000 0.000000 0.000000 ( 0.000149)
108
+ 100 items 0.000000 0.000000 0.000000 ( 0.000137)
109
+ 100 items 0.000000 0.000000 0.000000 ( 0.000136)
110
+ 1000 items 0.000000 0.000000 0.000000 ( 0.001426)
111
+ 1000 items 0.000000 0.000000 0.000000 ( 0.001369)
112
+ 1000 items 0.000000 0.000000 0.000000 ( 0.001355)
113
+ 2000 items 0.010000 0.000000 0.010000 ( 0.003304)
114
+ 2000 items 0.000000 0.000000 0.000000 ( 0.002192)
115
+ 2000 items 0.000000 0.000000 0.000000 ( 0.002849)
116
+ 4000 items 0.000000 0.000000 0.000000 ( 0.007730)
117
+ 4000 items 0.010000 0.000000 0.010000 ( 0.006074)
118
+ 4000 items 0.010000 0.000000 0.010000 ( 0.006514)
119
+
120
+ With e === a || a == e || values_match?(e,a)
121
+
122
+ 10 items 0.000000 0.000000 0.000000 ( 0.002202)
123
+ 10 items 0.000000 0.000000 0.000000 ( 0.000054)
124
+ 10 items 0.000000 0.000000 0.000000 ( 0.000046)
125
+ 100 items 0.000000 0.000000 0.000000 ( 0.000203)
126
+ 100 items 0.000000 0.000000 0.000000 ( 0.000199)
127
+ 100 items 0.000000 0.000000 0.000000 ( 0.000192)
128
+ 1000 items 0.010000 0.000000 0.010000 ( 0.001438)
129
+ 1000 items 0.000000 0.000000 0.000000 ( 0.001419)
130
+ 1000 items 0.000000 0.000000 0.000000 ( 0.001474)
131
+ 2000 items 0.010000 0.000000 0.010000 ( 0.003341)
132
+ 2000 items 0.000000 0.000000 0.000000 ( 0.003224)
133
+ 2000 items 0.000000 0.000000 0.000000 ( 0.003251)
134
+ 4000 items 0.010000 0.000000 0.010000 ( 0.007156)
135
+ 4000 items 0.010000 0.000000 0.010000 ( 0.006715)
136
+ 4000 items 0.000000 0.000000 0.000000 ( 0.006676)
137
+
138
+ With values_match?(e,a)
139
+
140
+ 10 items 0.000000 0.000000 0.000000 ( 0.001173)
141
+ 10 items 0.000000 0.000000 0.000000 ( 0.000051)
142
+ 10 items 0.000000 0.000000 0.000000 ( 0.000026)
143
+ 100 items 0.000000 0.000000 0.000000 ( 0.000171)
144
+ 100 items 0.000000 0.000000 0.000000 ( 0.000138)
145
+ 100 items 0.000000 0.000000 0.000000 ( 0.000136)
146
+ 1000 items 0.010000 0.000000 0.010000 ( 0.001506)
147
+ 1000 items 0.000000 0.000000 0.000000 ( 0.001486)
148
+ 1000 items 0.000000 0.000000 0.000000 ( 0.001510)
149
+ 2000 items 0.010000 0.000000 0.010000 ( 0.003153)
150
+ 2000 items 0.000000 0.010000 0.010000 ( 0.003883)
151
+ 2000 items 0.000000 0.000000 0.000000 ( 0.003199)
152
+ 4000 items 0.010000 0.000000 0.010000 ( 0.007178)
153
+ 4000 items 0.000000 0.000000 0.000000 ( 0.006629)
154
+ 4000 items 0.010000 0.000000 0.010000 ( 0.006435)