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,17 @@
1
+ require 'rspec/expectations'
2
+
3
+ Minitest::Test.class_eval do
4
+ include ::RSpec::Matchers
5
+
6
+ def expect(*a, &b)
7
+ assert(true) # so each expectation gets counted in minitest's assertion stats
8
+ super
9
+ end
10
+ end
11
+
12
+ module RSpec
13
+ module Expectations
14
+ remove_const :ExpectationNotMetError
15
+ ExpectationNotMetError = ::Minitest::Assertion
16
+ end
17
+ end
@@ -0,0 +1,132 @@
1
+ module RSpec
2
+ module Expectations
3
+ # @api private
4
+ # Provides methods for enabling and disabling the available
5
+ # syntaxes provided by rspec-expectations.
6
+ module Syntax
7
+ module_function
8
+
9
+ # @api private
10
+ # Determines where we add `should` and `should_not`.
11
+ def default_should_host
12
+ @default_should_host ||= ::Object.ancestors.last
13
+ end
14
+
15
+ # @api private
16
+ # Instructs rspec-expectations to warn on first usage of `should` or `should_not`.
17
+ # Enabled by default. This is largely here to facilitate testing.
18
+ def warn_about_should!
19
+ @warn_about_should = true
20
+ end
21
+
22
+ # @api private
23
+ # Generates a deprecation warning for the given method if no warning
24
+ # has already been issued.
25
+ def warn_about_should_unless_configured(method_name)
26
+ return unless @warn_about_should
27
+
28
+ RSpec.deprecate(
29
+ "Using `#{method_name}` from rspec-expectations' old `:should` syntax without explicitly enabling the syntax",
30
+ :replacement => "the new `:expect` syntax or explicitly enable `:should`"
31
+ )
32
+
33
+ @warn_about_should = false
34
+ end
35
+
36
+ # @api private
37
+ # Enables the `should` syntax.
38
+ def enable_should(syntax_host=default_should_host)
39
+ @warn_about_should = false if syntax_host == default_should_host
40
+ return if should_enabled?(syntax_host)
41
+
42
+ syntax_host.module_exec do
43
+ def should(matcher=nil, message=nil, &block)
44
+ ::RSpec::Expectations::Syntax.warn_about_should_unless_configured(__method__)
45
+ ::RSpec::Expectations::PositiveExpectationHandler.handle_matcher(self, matcher, message, &block)
46
+ end
47
+
48
+ def should_not(matcher=nil, message=nil, &block)
49
+ ::RSpec::Expectations::Syntax.warn_about_should_unless_configured(__method__)
50
+ ::RSpec::Expectations::NegativeExpectationHandler.handle_matcher(self, matcher, message, &block)
51
+ end
52
+ end
53
+ end
54
+
55
+ # @api private
56
+ # Disables the `should` syntax.
57
+ def disable_should(syntax_host=default_should_host)
58
+ return unless should_enabled?(syntax_host)
59
+
60
+ syntax_host.module_exec do
61
+ undef should
62
+ undef should_not
63
+ end
64
+ end
65
+
66
+ # @api private
67
+ # Enables the `expect` syntax.
68
+ def enable_expect(syntax_host=::RSpec::Matchers)
69
+ return if expect_enabled?(syntax_host)
70
+
71
+ syntax_host.module_exec do
72
+ def expect(value=::RSpec::Expectations::ExpectationTarget::UndefinedValue, &block)
73
+ ::RSpec::Expectations::ExpectationTarget.for(value, block)
74
+ end
75
+ end
76
+ end
77
+
78
+ # @api private
79
+ # Disables the `expect` syntax.
80
+ def disable_expect(syntax_host=::RSpec::Matchers)
81
+ return unless expect_enabled?(syntax_host)
82
+
83
+ syntax_host.module_exec do
84
+ undef expect
85
+ end
86
+ end
87
+
88
+ # @api private
89
+ # Indicates whether or not the `should` syntax is enabled.
90
+ def should_enabled?(syntax_host=default_should_host)
91
+ syntax_host.method_defined?(:should)
92
+ end
93
+
94
+ # @api private
95
+ # Indicates whether or not the `expect` syntax is enabled.
96
+ def expect_enabled?(syntax_host=::RSpec::Matchers)
97
+ syntax_host.method_defined?(:expect)
98
+ end
99
+ end
100
+ end
101
+ end
102
+
103
+ if defined?(BasicObject)
104
+ # The legacy `:should` syntax adds the following methods directly to
105
+ # `BasicObject` so that they are available off of any object. Note, however,
106
+ # that this syntax does not always play nice with delegate/proxy objects.
107
+ # We recommend you use the non-monkeypatching `:expect` syntax instead.
108
+ class BasicObject
109
+ # @method should
110
+ # Passes if `matcher` returns true. Available on every `Object`.
111
+ # @example
112
+ # actual.should eq expected
113
+ # actual.should match /expression/
114
+ # @param [Matcher]
115
+ # matcher
116
+ # @param [String] message optional message to display when the expectation fails
117
+ # @return [Boolean] true if the expectation succeeds (else raises)
118
+ # @note This is only available when you have enabled the `:should` syntax.
119
+ # @see RSpec::Matchers
120
+
121
+ # @method should_not
122
+ # Passes if `matcher` returns false. Available on every `Object`.
123
+ # @example
124
+ # actual.should_not eq expected
125
+ # @param [Matcher]
126
+ # matcher
127
+ # @param [String] message optional message to display when the expectation fails
128
+ # @return [Boolean] false if the negative expectation succeeds (else raises)
129
+ # @note This is only available when you have enabled the `:should` syntax.
130
+ # @see RSpec::Matchers
131
+ end
132
+ end
@@ -0,0 +1,8 @@
1
+ module RSpec
2
+ module Expectations
3
+ # @private
4
+ module Version
5
+ STRING = '3.1.2'
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,967 @@
1
+ require 'rspec/support'
2
+ RSpec::Support.require_rspec_support 'matcher_definition'
3
+ RSpec::Support.define_optimized_require_for_rspec(:matchers) { |f| require_relative(f) }
4
+
5
+ %w[
6
+ pretty
7
+ composable
8
+ built_in
9
+ generated_descriptions
10
+ dsl
11
+ matcher_delegator
12
+ aliased_matcher
13
+ ].each { |file| RSpec::Support.require_rspec_matchers(file) }
14
+
15
+ # RSpec's top level namespace. All of rspec-expectations is contained
16
+ # in the `RSpec::Expectations` and `RSpec::Matchers` namespaces.
17
+ module RSpec
18
+ # RSpec::Matchers provides a number of useful matchers we use to define
19
+ # expectations. Any object that implements the [matcher protocol](Matchers/MatcherProtocol)
20
+ # can be used as a matcher.
21
+ #
22
+ # ## Predicates
23
+ #
24
+ # In addition to matchers that are defined explicitly, RSpec will create
25
+ # custom matchers on the fly for any arbitrary predicate, giving your specs a
26
+ # much more natural language feel.
27
+ #
28
+ # A Ruby predicate is a method that ends with a "?" and returns true or false.
29
+ # Common examples are `empty?`, `nil?`, and `instance_of?`.
30
+ #
31
+ # All you need to do is write `expect(..).to be_` followed by the predicate
32
+ # without the question mark, and RSpec will figure it out from there.
33
+ # For example:
34
+ #
35
+ # expect([]).to be_empty # => [].empty?() | passes
36
+ # expect([]).not_to be_empty # => [].empty?() | fails
37
+ #
38
+ # In addtion to prefixing the predicate matchers with "be_", you can also use "be_a_"
39
+ # and "be_an_", making your specs read much more naturally:
40
+ #
41
+ # expect("a string").to be_an_instance_of(String) # =>"a string".instance_of?(String) # passes
42
+ #
43
+ # expect(3).to be_a_kind_of(Fixnum) # => 3.kind_of?(Numeric) | passes
44
+ # expect(3).to be_a_kind_of(Numeric) # => 3.kind_of?(Numeric) | passes
45
+ # expect(3).to be_an_instance_of(Fixnum) # => 3.instance_of?(Fixnum) | passes
46
+ # expect(3).not_to be_an_instance_of(Numeric) # => 3.instance_of?(Numeric) | fails
47
+ #
48
+ # RSpec will also create custom matchers for predicates like `has_key?`. To
49
+ # use this feature, just state that the object should have_key(:key) and RSpec will
50
+ # call has_key?(:key) on the target. For example:
51
+ #
52
+ # expect(:a => "A").to have_key(:a)
53
+ # expect(:a => "A").to have_key(:b) # fails
54
+ #
55
+ # You can use this feature to invoke any predicate that begins with "has_", whether it is
56
+ # part of the Ruby libraries (like `Hash#has_key?`) or a method you wrote on your own class.
57
+ #
58
+ # Note that RSpec does not provide composable aliases for these dynamic predicate
59
+ # matchers. You can easily define your own aliases, though:
60
+ #
61
+ # RSpec::Matchers.alias_matcher :a_user_who_is_an_admin, :be_an_admin
62
+ # expect(user_list).to include(a_user_who_is_an_admin)
63
+ #
64
+ # ## Custom Matchers
65
+ #
66
+ # When you find that none of the stock matchers provide a natural feeling
67
+ # expectation, you can very easily write your own using RSpec's matcher DSL
68
+ # or writing one from scratch.
69
+ #
70
+ # ### Matcher DSL
71
+ #
72
+ # Imagine that you are writing a game in which players can be in various
73
+ # zones on a virtual board. To specify that bob should be in zone 4, you
74
+ # could say:
75
+ #
76
+ # expect(bob.current_zone).to eql(Zone.new("4"))
77
+ #
78
+ # But you might find it more expressive to say:
79
+ #
80
+ # expect(bob).to be_in_zone("4")
81
+ #
82
+ # and/or
83
+ #
84
+ # expect(bob).not_to be_in_zone("3")
85
+ #
86
+ # You can create such a matcher like so:
87
+ #
88
+ # RSpec::Matchers.define :be_in_zone do |zone|
89
+ # match do |player|
90
+ # player.in_zone?(zone)
91
+ # end
92
+ # end
93
+ #
94
+ # This will generate a <tt>be_in_zone</tt> method that returns a matcher
95
+ # with logical default messages for failures. You can override the failure
96
+ # messages and the generated description as follows:
97
+ #
98
+ # RSpec::Matchers.define :be_in_zone do |zone|
99
+ # match do |player|
100
+ # player.in_zone?(zone)
101
+ # end
102
+ #
103
+ # failure_message do |player|
104
+ # # generate and return the appropriate string.
105
+ # end
106
+ #
107
+ # failure_message_when_negated do |player|
108
+ # # generate and return the appropriate string.
109
+ # end
110
+ #
111
+ # description do
112
+ # # generate and return the appropriate string.
113
+ # end
114
+ # end
115
+ #
116
+ # Each of the message-generation methods has access to the block arguments
117
+ # passed to the <tt>create</tt> method (in this case, <tt>zone</tt>). The
118
+ # failure message methods (<tt>failure_message</tt> and
119
+ # <tt>failure_message_when_negated</tt>) are passed the actual value (the
120
+ # receiver of <tt>expect(..)</tt> or <tt>expect(..).not_to</tt>).
121
+ #
122
+ # ### Custom Matcher from scratch
123
+ #
124
+ # You could also write a custom matcher from scratch, as follows:
125
+ #
126
+ # class BeInZone
127
+ # def initialize(expected)
128
+ # @expected = expected
129
+ # end
130
+ #
131
+ # def matches?(target)
132
+ # @target = target
133
+ # @target.current_zone.eql?(Zone.new(@expected))
134
+ # end
135
+ #
136
+ # def failure_message
137
+ # "expected #{@target.inspect} to be in Zone #{@expected}"
138
+ # end
139
+ #
140
+ # def failure_message_when_negated
141
+ # "expected #{@target.inspect} not to be in Zone #{@expected}"
142
+ # end
143
+ # end
144
+ #
145
+ # ... and a method like this:
146
+ #
147
+ # def be_in_zone(expected)
148
+ # BeInZone.new(expected)
149
+ # end
150
+ #
151
+ # And then expose the method to your specs. This is normally done
152
+ # by including the method and the class in a module, which is then
153
+ # included in your spec:
154
+ #
155
+ # module CustomGameMatchers
156
+ # class BeInZone
157
+ # # ...
158
+ # end
159
+ #
160
+ # def be_in_zone(expected)
161
+ # # ...
162
+ # end
163
+ # end
164
+ #
165
+ # describe "Player behaviour" do
166
+ # include CustomGameMatchers
167
+ # # ...
168
+ # end
169
+ #
170
+ # or you can include in globally in a spec_helper.rb file <tt>require</tt>d
171
+ # from your spec file(s):
172
+ #
173
+ # RSpec::configure do |config|
174
+ # config.include(CustomGameMatchers)
175
+ # end
176
+ #
177
+ # ### Making custom matchers composable
178
+ #
179
+ # RSpec's built-in matchers are designed to be composed, in expressions like:
180
+ #
181
+ # expect(["barn", 2.45]).to contain_exactly(
182
+ # a_value_within(0.1).of(2.5),
183
+ # a_string_starting_with("bar")
184
+ # )
185
+ #
186
+ # Custom matchers can easily participate in composed matcher expressions like these.
187
+ # Include {RSpec::Matchers::Composable} in your custom matcher to make it support
188
+ # being composed (matchers defined using the DSL have this included automatically).
189
+ # Within your matcher's `matches?` method (or the `match` block, if using the DSL),
190
+ # use `values_match?(expected, actual)` rather than `expected == actual`.
191
+ # Under the covers, `values_match?` is able to match arbitrary
192
+ # nested data structures containing a mix of both matchers and non-matcher objects.
193
+ # It uses `===` and `==` to perform the matching, considering the values to
194
+ # match if either returns `true`. The `Composable` mixin also provides some helper
195
+ # methods for surfacing the matcher descriptions within your matcher's description
196
+ # or failure messages.
197
+ #
198
+ # RSpec's built-in matchers each have a number of aliases that rephrase the matcher
199
+ # from a verb phrase (such as `be_within`) to a noun phrase (such as `a_value_within`),
200
+ # which reads better when the matcher is passed as an argument in a composed matcher
201
+ # expressions, and also uses the noun-phrase wording in the matcher's `description`,
202
+ # for readable failure messages. You can alias your custom matchers in similar fashion
203
+ # using {RSpec::Matchers.alias_matcher}.
204
+ module Matchers
205
+ # @method expect
206
+ # Supports `expect(actual).to matcher` syntax by wrapping `actual` in an
207
+ # `ExpectationTarget`.
208
+ # @example
209
+ # expect(actual).to eq(expected)
210
+ # expect(actual).not_to eq(expected)
211
+ # @return [ExpectationTarget]
212
+ # @see ExpectationTarget#to
213
+ # @see ExpectationTarget#not_to
214
+
215
+ # Defines a matcher alias. The returned matcher's `description` will be overriden
216
+ # to reflect the phrasing of the new name, which will be used in failure messages
217
+ # when passed as an argument to another matcher in a composed matcher expression.
218
+ #
219
+ # @param new_name [Symbol] the new name for the matcher
220
+ # @param old_name [Symbol] the original name for the matcher
221
+ # @param options [Hash] options for the aliased matcher
222
+ # @option options [Class] :klass the ruby class to use as the decorator. (Not normally used).
223
+ # @yield [String] optional block that, when given is used to define the overriden
224
+ # description. The yielded arg is the original description. If no block is
225
+ # provided, a default description override is used based on the old and
226
+ # new names.
227
+ #
228
+ # @example
229
+ #
230
+ # RSpec::Matchers.alias_matcher :a_list_that_sums_to, :sum_to
231
+ # sum_to(3).description # => "sum to 3"
232
+ # a_list_that_sums_to(3).description # => "a list that sums to 3"
233
+ #
234
+ # @example
235
+ #
236
+ # RSpec::Matchers.alias_matcher :a_list_sorted_by, :be_sorted_by do |description|
237
+ # description.sub("be sorted by", "a list sorted by")
238
+ # end
239
+ #
240
+ # be_sorted_by(:age).description # => "be sorted by age"
241
+ # a_list_sorted_by(:age).description # => "a list sorted by age"
242
+ #
243
+ # @!macro [attach] alias_matcher
244
+ # @!parse
245
+ # alias $1 $2
246
+ def self.alias_matcher(new_name, old_name, options={}, &description_override)
247
+ description_override ||= lambda do |old_desc|
248
+ old_desc.gsub(Pretty.split_words(old_name), Pretty.split_words(new_name))
249
+ end
250
+ klass = options.fetch(:klass) { AliasedMatcher }
251
+
252
+ define_method(new_name) do |*args, &block|
253
+ matcher = __send__(old_name, *args, &block)
254
+ klass.new(matcher, description_override)
255
+ end
256
+ end
257
+
258
+ # Defines a negated matcher. The returned matcher's `description` and `failure_message`
259
+ # will be overriden to reflect the phrasing of the new name, and the match logic will
260
+ # be based on the original matcher but negated.
261
+ #
262
+ # @param negated_name [Symbol] the name for the negated matcher
263
+ # @param base_name [Symbol] the name of the original matcher that will be negated
264
+ # @yield [String] optional block that, when given is used to define the overriden
265
+ # description. The yielded arg is the original description. If no block is
266
+ # provided, a default description override is used based on the old and
267
+ # new names.
268
+ #
269
+ # @example
270
+ #
271
+ # RSpec::Matchers.define_negated_matcher :a_value_not_between, :a_value_between
272
+ # a_value_between(3, 5).description # => "a value between 3 and 5"
273
+ # a_value_not_between(3, 5).description # => "a value not between 3 and 5"
274
+ def self.define_negated_matcher(negated_name, base_name, &description_override)
275
+ alias_matcher(negated_name, base_name, :klass => AliasedNegatedMatcher, &description_override)
276
+ end
277
+
278
+ # Passes if actual is truthy (anything but false or nil)
279
+ def be_truthy
280
+ BuiltIn::BeTruthy.new
281
+ end
282
+ alias_matcher :a_truthy_value, :be_truthy
283
+
284
+ # Passes if actual is falsey (false or nil)
285
+ def be_falsey
286
+ BuiltIn::BeFalsey.new
287
+ end
288
+ alias_matcher :be_falsy, :be_falsey
289
+ alias_matcher :a_falsey_value, :be_falsey
290
+ alias_matcher :a_falsy_value, :be_falsey
291
+
292
+ # Passes if actual is nil
293
+ def be_nil
294
+ BuiltIn::BeNil.new
295
+ end
296
+ alias_matcher :a_nil_value, :be_nil
297
+
298
+ # @example
299
+ # expect(actual).to be_truthy
300
+ # expect(actual).to be_falsey
301
+ # expect(actual).to be_nil
302
+ # expect(actual).to be_[arbitrary_predicate](*args)
303
+ # expect(actual).not_to be_nil
304
+ # expect(actual).not_to be_[arbitrary_predicate](*args)
305
+ #
306
+ # Given true, false, or nil, will pass if actual value is true, false or
307
+ # nil (respectively). Given no args means the caller should satisfy an if
308
+ # condition (to be or not to be).
309
+ #
310
+ # Predicates are any Ruby method that ends in a "?" and returns true or
311
+ # false. Given be_ followed by arbitrary_predicate (without the "?"),
312
+ # RSpec will match convert that into a query against the target object.
313
+ #
314
+ # The arbitrary_predicate feature will handle any predicate prefixed with
315
+ # "be_an_" (e.g. be_an_instance_of), "be_a_" (e.g. be_a_kind_of) or "be_"
316
+ # (e.g. be_empty), letting you choose the prefix that best suits the
317
+ # predicate.
318
+ def be(*args)
319
+ args.empty? ? Matchers::BuiltIn::Be.new : equal(*args)
320
+ end
321
+ alias_matcher :a_value, :be, :klass => AliasedMatcherWithOperatorSupport
322
+
323
+ # passes if target.kind_of?(klass)
324
+ def be_a(klass)
325
+ be_a_kind_of(klass)
326
+ end
327
+ alias_method :be_an, :be_a
328
+
329
+ # Passes if actual.instance_of?(expected)
330
+ #
331
+ # @example
332
+ #
333
+ # expect(5).to be_an_instance_of(Fixnum)
334
+ # expect(5).not_to be_an_instance_of(Numeric)
335
+ # expect(5).not_to be_an_instance_of(Float)
336
+ def be_an_instance_of(expected)
337
+ BuiltIn::BeAnInstanceOf.new(expected)
338
+ end
339
+ alias_method :be_instance_of, :be_an_instance_of
340
+ alias_matcher :an_instance_of, :be_an_instance_of
341
+
342
+ # Passes if actual.kind_of?(expected)
343
+ #
344
+ # @example
345
+ #
346
+ # expect(5).to be_a_kind_of(Fixnum)
347
+ # expect(5).to be_a_kind_of(Numeric)
348
+ # expect(5).not_to be_a_kind_of(Float)
349
+ def be_a_kind_of(expected)
350
+ BuiltIn::BeAKindOf.new(expected)
351
+ end
352
+ alias_method :be_kind_of, :be_a_kind_of
353
+ alias_matcher :a_kind_of, :be_a_kind_of
354
+
355
+ # Passes if actual.between?(min, max). Works with any Comparable object,
356
+ # including String, Symbol, Time, or Numeric (Fixnum, Bignum, Integer,
357
+ # Float, Complex, and Rational).
358
+ #
359
+ # By default, `be_between` is inclusive (i.e. passes when given either the max or min value),
360
+ # but you can make it `exclusive` by chaining that off the matcher.
361
+ #
362
+ # @example
363
+ #
364
+ # expect(5).to be_between(1, 10)
365
+ # expect(11).not_to be_between(1, 10)
366
+ # expect(10).not_to be_between(1, 10).exclusive
367
+ def be_between(min, max)
368
+ BuiltIn::BeBetween.new(min, max)
369
+ end
370
+ alias_matcher :a_value_between, :be_between
371
+
372
+ # Passes if actual == expected +/- delta
373
+ #
374
+ # @example
375
+ #
376
+ # expect(result).to be_within(0.5).of(3.0)
377
+ # expect(result).not_to be_within(0.5).of(3.0)
378
+ def be_within(delta)
379
+ BuiltIn::BeWithin.new(delta)
380
+ end
381
+ alias_matcher :a_value_within, :be_within
382
+ alias_matcher :within, :be_within
383
+
384
+ # Applied to a proc, specifies that its execution will cause some value to
385
+ # change.
386
+ #
387
+ # @param [Object] receiver
388
+ # @param [Symbol] message the message to send the receiver
389
+ #
390
+ # You can either pass <tt>receiver</tt> and <tt>message</tt>, or a block,
391
+ # but not both.
392
+ #
393
+ # When passing a block, it must use the `{ ... }` format, not
394
+ # do/end, as `{ ... }` binds to the `change` method, whereas do/end
395
+ # would errantly bind to the `expect(..).to` or `expect(...).not_to` method.
396
+ #
397
+ # You can chain any of the following off of the end to specify details
398
+ # about the change:
399
+ #
400
+ # * `from`
401
+ # * `to`
402
+ #
403
+ # or any one of:
404
+ #
405
+ # * `by`
406
+ # * `by_at_least`
407
+ # * `by_at_most`
408
+ #
409
+ # @example
410
+ #
411
+ # expect {
412
+ # team.add_player(player)
413
+ # }.to change(roster, :count)
414
+ #
415
+ # expect {
416
+ # team.add_player(player)
417
+ # }.to change(roster, :count).by(1)
418
+ #
419
+ # expect {
420
+ # team.add_player(player)
421
+ # }.to change(roster, :count).by_at_least(1)
422
+ #
423
+ # expect {
424
+ # team.add_player(player)
425
+ # }.to change(roster, :count).by_at_most(1)
426
+ #
427
+ # string = "string"
428
+ # expect {
429
+ # string.reverse!
430
+ # }.to change { string }.from("string").to("gnirts")
431
+ #
432
+ # string = "string"
433
+ # expect {
434
+ # string
435
+ # }.not_to change { string }.from("string")
436
+ #
437
+ # expect {
438
+ # person.happy_birthday
439
+ # }.to change(person, :birthday).from(32).to(33)
440
+ #
441
+ # expect {
442
+ # employee.develop_great_new_social_networking_app
443
+ # }.to change(employee, :title).from("Mail Clerk").to("CEO")
444
+ #
445
+ # expect {
446
+ # doctor.leave_office
447
+ # }.to change(doctor, :sign).from(/is in/).to(/is out/)
448
+ #
449
+ # user = User.new(:type => "admin")
450
+ # expect {
451
+ # user.symbolize_type
452
+ # }.to change(user, :type).from(String).to(Symbol)
453
+ #
454
+ # == Notes
455
+ #
456
+ # Evaluates `receiver.message` or `block` before and after it
457
+ # evaluates the block passed to `expect`.
458
+ #
459
+ # `expect( ... ).not_to change` supports the form that specifies `from`
460
+ # (which specifies what you expect the starting, unchanged value to be)
461
+ # but does not support forms with subsequent calls to `by`, `by_at_least`,
462
+ # `by_at_most` or `to`.
463
+ def change(receiver=nil, message=nil, &block)
464
+ BuiltIn::Change.new(receiver, message, &block)
465
+ end
466
+ alias_matcher :a_block_changing, :change
467
+ alias_matcher :changing, :change
468
+
469
+ # Passes if actual contains all of the expected regardless of order.
470
+ # This works for collections. Pass in multiple args and it will only
471
+ # pass if all args are found in collection.
472
+ #
473
+ # @note This is also available using the `=~` operator with `should`,
474
+ # but `=~` is not supported with `expect`.
475
+ #
476
+ # @example
477
+ #
478
+ # expect([1, 2, 3]).to contain_exactly(1, 2, 3)
479
+ # expect([1, 2, 3]).to contain_exactly(1, 3, 2)
480
+ #
481
+ # @see #match_array
482
+ def contain_exactly(*items)
483
+ BuiltIn::ContainExactly.new(items)
484
+ end
485
+ alias_matcher :a_collection_containing_exactly, :contain_exactly
486
+ alias_matcher :containing_exactly, :contain_exactly
487
+
488
+ # Passes if actual covers expected. This works for
489
+ # Ranges. You can also pass in multiple args
490
+ # and it will only pass if all args are found in Range.
491
+ #
492
+ # @example
493
+ # expect(1..10).to cover(5)
494
+ # expect(1..10).to cover(4, 6)
495
+ # expect(1..10).to cover(4, 6, 11) # fails
496
+ # expect(1..10).not_to cover(11)
497
+ # expect(1..10).not_to cover(5) # fails
498
+ #
499
+ # ### Warning:: Ruby >= 1.9 only
500
+ def cover(*values)
501
+ BuiltIn::Cover.new(*values)
502
+ end
503
+ alias_matcher :a_range_covering, :cover
504
+ alias_matcher :covering, :cover
505
+
506
+ # Matches if the actual value ends with the expected value(s). In the case
507
+ # of a string, matches against the last `expected.length` characters of the
508
+ # actual string. In the case of an array, matches against the last
509
+ # `expected.length` elements of the actual array.
510
+ #
511
+ # @example
512
+ #
513
+ # expect("this string").to end_with "string"
514
+ # expect([0, 1, 2, 3, 4]).to end_with 4
515
+ # expect([0, 2, 3, 4, 4]).to end_with 3, 4
516
+ def end_with(*expected)
517
+ BuiltIn::EndWith.new(*expected)
518
+ end
519
+ alias_matcher :a_collection_ending_with, :end_with
520
+ alias_matcher :a_string_ending_with, :end_with
521
+ alias_matcher :ending_with, :end_with
522
+
523
+ # Passes if <tt>actual == expected</tt>.
524
+ #
525
+ # See http://www.ruby-doc.org/core/classes/Object.html#M001057 for more
526
+ # information about equality in Ruby.
527
+ #
528
+ # @example
529
+ #
530
+ # expect(5).to eq(5)
531
+ # expect(5).not_to eq(3)
532
+ def eq(expected)
533
+ BuiltIn::Eq.new(expected)
534
+ end
535
+ alias_matcher :an_object_eq_to, :eq
536
+ alias_matcher :eq_to, :eq
537
+
538
+ # Passes if `actual.eql?(expected)`
539
+ #
540
+ # See http://www.ruby-doc.org/core/classes/Object.html#M001057 for more
541
+ # information about equality in Ruby.
542
+ #
543
+ # @example
544
+ #
545
+ # expect(5).to eql(5)
546
+ # expect(5).not_to eql(3)
547
+ def eql(expected)
548
+ BuiltIn::Eql.new(expected)
549
+ end
550
+ alias_matcher :an_object_eql_to, :eql
551
+ alias_matcher :eql_to, :eql
552
+
553
+ # Passes if <tt>actual.equal?(expected)</tt> (object identity).
554
+ #
555
+ # See http://www.ruby-doc.org/core/classes/Object.html#M001057 for more
556
+ # information about equality in Ruby.
557
+ #
558
+ # @example
559
+ #
560
+ # expect(5).to equal(5) # Fixnums are equal
561
+ # expect("5").not_to equal("5") # Strings that look the same are not the same object
562
+ def equal(expected)
563
+ BuiltIn::Equal.new(expected)
564
+ end
565
+ alias_matcher :an_object_equal_to, :equal
566
+ alias_matcher :equal_to, :equal
567
+
568
+ # Passes if `actual.exist?` or `actual.exists?`
569
+ #
570
+ # @example
571
+ # expect(File).to exist("path/to/file")
572
+ def exist(*args)
573
+ BuiltIn::Exist.new(*args)
574
+ end
575
+ alias_matcher :an_object_existing, :exist
576
+ alias_matcher :existing, :exist
577
+
578
+ # Passes if actual's attribute values match the expected attributes hash.
579
+ # This works no matter how you define your attribute readers.
580
+ #
581
+ # @example
582
+ #
583
+ # Person = Struct.new(:name, :age)
584
+ # person = Person.new("Bob", 32)
585
+ #
586
+ # expect(person).to have_attributes(:name => "Bob", :age => 32)
587
+ # expect(person).to have_attributes(:name => a_string_starting_with("B"), :age => (a_value > 30) )
588
+ #
589
+ # @note It will fail if actual doesn't respond to any of the expected attributes.
590
+ #
591
+ # @example
592
+ #
593
+ # expect(person).to have_attributes(:color => "red")
594
+ def have_attributes(expected)
595
+ BuiltIn::HaveAttributes.new(expected)
596
+ end
597
+ alias_matcher :an_object_having_attributes, :have_attributes
598
+
599
+ # Passes if actual includes expected. This works for
600
+ # collections and Strings. You can also pass in multiple args
601
+ # and it will only pass if all args are found in collection.
602
+ #
603
+ # @example
604
+ #
605
+ # expect([1,2,3]).to include(3)
606
+ # expect([1,2,3]).to include(2,3)
607
+ # expect([1,2,3]).to include(2,3,4) # fails
608
+ # expect([1,2,3]).not_to include(4)
609
+ # expect("spread").to include("read")
610
+ # expect("spread").not_to include("red")
611
+ def include(*expected)
612
+ BuiltIn::Include.new(*expected)
613
+ end
614
+ alias_matcher :a_collection_including, :include
615
+ alias_matcher :a_string_including, :include
616
+ alias_matcher :a_hash_including, :include
617
+ alias_matcher :including, :include
618
+
619
+ # Passes if actual all expected objects pass. This works for
620
+ # any enumerable object.
621
+ #
622
+ # @example
623
+ #
624
+ # expect([1, 3, 5]).to all be_odd
625
+ # expect([1, 3, 6]).to all be_odd # fails
626
+ #
627
+ # @note The negative form `not_to all` is not supported. Instead
628
+ # use `not_to include` or pass a negative form of a matcher
629
+ # as the argument (e.g. `all exclude(:foo)`).
630
+ #
631
+ # @note You can also use this with compound matchers as well.
632
+ #
633
+ # @example
634
+ # expect([1, 3, 5]).to all( be_odd.and be_an(Integer) )
635
+ def all(expected)
636
+ BuiltIn::All.new(expected)
637
+ end
638
+
639
+ # Given a `Regexp` or `String`, passes if `actual.match(pattern)`
640
+ # Given an arbitrary nested data structure (e.g. arrays and hashes),
641
+ # matches if `expected === actual` || `actual == expected` for each
642
+ # pair of elements.
643
+ #
644
+ # @example
645
+ #
646
+ # expect(email).to match(/^([^\s]+)((?:[-a-z0-9]+\.)+[a-z]{2,})$/i)
647
+ # expect(email).to match("@example.com")
648
+ #
649
+ # @example
650
+ #
651
+ # hash = {
652
+ # :a => {
653
+ # :b => ["foo", 5],
654
+ # :c => { :d => 2.05 }
655
+ # }
656
+ # }
657
+ #
658
+ # expect(hash).to match(
659
+ # :a => {
660
+ # :b => a_collection_containing_exactly(
661
+ # a_string_starting_with("f"),
662
+ # an_instance_of(Fixnum)
663
+ # ),
664
+ # :c => { :d => (a_value < 3) }
665
+ # }
666
+ # )
667
+ #
668
+ # @note The `match_regex` alias is deprecated and is not recommended for use.
669
+ # It was added in 2.12.1 to facilitate its use from within custom
670
+ # matchers (due to how the custom matcher DSL was evaluated in 2.x,
671
+ # `match` could not be used there), but is no longer needed in 3.x.
672
+ def match(expected)
673
+ BuiltIn::Match.new(expected)
674
+ end
675
+ alias_matcher :match_regex, :match
676
+ alias_matcher :an_object_matching, :match
677
+ alias_matcher :a_string_matching, :match
678
+ alias_matcher :matching, :match
679
+
680
+ # An alternate form of `contain_exactly` that accepts
681
+ # the expected contents as a single array arg rather
682
+ # that splatted out as individual items.
683
+ #
684
+ # @example
685
+ #
686
+ # expect(results).to contain_exactly(1, 2)
687
+ # # is identical to:
688
+ # expect(results).to match_array([1, 2])
689
+ #
690
+ # @see #contain_exactly
691
+ def match_array(items)
692
+ contain_exactly(*items)
693
+ end
694
+
695
+ # With no arg, passes if the block outputs `to_stdout` or `to_stderr`.
696
+ # With a string, passes if the blocks outputs that specific string `to_stdout` or `to_stderr`.
697
+ # With a regexp or matcher, passes if the blocks outputs a string `to_stdout` or `to_stderr` that matches.
698
+ #
699
+ # @example
700
+ #
701
+ # expect { print 'foo' }.to output.to_stdout
702
+ # expect { print 'foo' }.to output('foo').to_stdout
703
+ # expect { print 'foo' }.to output(/foo/).to_stdout
704
+ #
705
+ # expect { do_something }.to_not output.to_stdout
706
+ #
707
+ # expect { warn('foo') }.to output.to_stderr
708
+ # expect { warn('foo') }.to output('foo').to_stderr
709
+ # expect { warn('foo') }.to output(/foo/).to_stderr
710
+ #
711
+ # expect { do_something }.to_not output.to_stderr
712
+ #
713
+ # @note This matcher works by temporarily replacing `$stdout` or `$stderr`,
714
+ # so it's not able to intercept stream output that explicitly uses `STDOUT`/`STDERR`
715
+ # or that uses a reference to `$stdout`/`$stderr` that was stored before the
716
+ # matcher is used.
717
+ def output(expected=nil)
718
+ BuiltIn::Output.new(expected)
719
+ end
720
+ alias_matcher :a_block_outputting, :output
721
+
722
+ # With no args, matches if any error is raised.
723
+ # With a named error, matches only if that specific error is raised.
724
+ # With a named error and messsage specified as a String, matches only if both match.
725
+ # With a named error and messsage specified as a Regexp, matches only if both match.
726
+ # Pass an optional block to perform extra verifications on the exception matched
727
+ #
728
+ # @example
729
+ #
730
+ # expect { do_something_risky }.to raise_error
731
+ # expect { do_something_risky }.to raise_error(PoorRiskDecisionError)
732
+ # expect { do_something_risky }.to raise_error(PoorRiskDecisionError) { |error| expect(error.data).to eq 42 }
733
+ # expect { do_something_risky }.to raise_error(PoorRiskDecisionError, "that was too risky")
734
+ # expect { do_something_risky }.to raise_error(PoorRiskDecisionError, /oo ri/)
735
+ #
736
+ # expect { do_something_risky }.not_to raise_error
737
+ def raise_error(error=Exception, message=nil, &block)
738
+ BuiltIn::RaiseError.new(error, message, &block)
739
+ end
740
+ alias_method :raise_exception, :raise_error
741
+
742
+ alias_matcher :a_block_raising, :raise_error do |desc|
743
+ desc.sub("raise", "a block raising")
744
+ end
745
+
746
+ alias_matcher :raising, :raise_error do |desc|
747
+ desc.sub("raise", "raising")
748
+ end
749
+
750
+ # Matches if the target object responds to all of the names
751
+ # provided. Names can be Strings or Symbols.
752
+ #
753
+ # @example
754
+ #
755
+ # expect("string").to respond_to(:length)
756
+ #
757
+ def respond_to(*names)
758
+ BuiltIn::RespondTo.new(*names)
759
+ end
760
+ alias_matcher :an_object_responding_to, :respond_to
761
+ alias_matcher :responding_to, :respond_to
762
+
763
+ # Passes if the submitted block returns true. Yields target to the
764
+ # block.
765
+ #
766
+ # Generally speaking, this should be thought of as a last resort when
767
+ # you can't find any other way to specify the behaviour you wish to
768
+ # specify.
769
+ #
770
+ # If you do find yourself in such a situation, you could always write
771
+ # a custom matcher, which would likely make your specs more expressive.
772
+ #
773
+ # @example
774
+ #
775
+ # expect(5).to satisfy { |n| n > 3 }
776
+ def satisfy(&block)
777
+ BuiltIn::Satisfy.new(&block)
778
+ end
779
+ alias_matcher :an_object_satisfying, :satisfy
780
+ alias_matcher :satisfying, :satisfy
781
+
782
+ # Matches if the actual value starts with the expected value(s). In the
783
+ # case of a string, matches against the first `expected.length` characters
784
+ # of the actual string. In the case of an array, matches against the first
785
+ # `expected.length` elements of the actual array.
786
+ #
787
+ # @example
788
+ #
789
+ # expect("this string").to start_with "this s"
790
+ # expect([0, 1, 2, 3, 4]).to start_with 0
791
+ # expect([0, 2, 3, 4, 4]).to start_with 0, 1
792
+ def start_with(*expected)
793
+ BuiltIn::StartWith.new(*expected)
794
+ end
795
+ alias_matcher :a_collection_starting_with, :start_with
796
+ alias_matcher :a_string_starting_with, :start_with
797
+ alias_matcher :starting_with, :start_with
798
+
799
+ # Given no argument, matches if a proc throws any Symbol.
800
+ #
801
+ # Given a Symbol, matches if the given proc throws the specified Symbol.
802
+ #
803
+ # Given a Symbol and an arg, matches if the given proc throws the
804
+ # specified Symbol with the specified arg.
805
+ #
806
+ # @example
807
+ #
808
+ # expect { do_something_risky }.to throw_symbol
809
+ # expect { do_something_risky }.to throw_symbol(:that_was_risky)
810
+ # expect { do_something_risky }.to throw_symbol(:that_was_risky, 'culprit')
811
+ #
812
+ # expect { do_something_risky }.not_to throw_symbol
813
+ # expect { do_something_risky }.not_to throw_symbol(:that_was_risky)
814
+ # expect { do_something_risky }.not_to throw_symbol(:that_was_risky, 'culprit')
815
+ def throw_symbol(expected_symbol=nil, expected_arg=nil)
816
+ BuiltIn::ThrowSymbol.new(expected_symbol, expected_arg)
817
+ end
818
+
819
+ alias_matcher :a_block_throwing, :throw_symbol do |desc|
820
+ desc.sub("throw", "a block throwing")
821
+ end
822
+
823
+ alias_matcher :throwing, :throw_symbol do |desc|
824
+ desc.sub("throw", "throwing")
825
+ end
826
+
827
+ # Passes if the method called in the expect block yields, regardless
828
+ # of whether or not arguments are yielded.
829
+ #
830
+ # @example
831
+ #
832
+ # expect { |b| 5.tap(&b) }.to yield_control
833
+ # expect { |b| "a".to_sym(&b) }.not_to yield_control
834
+ #
835
+ # @note Your expect block must accept a parameter and pass it on to
836
+ # the method-under-test as a block.
837
+ # @note This matcher is not designed for use with methods that yield
838
+ # multiple times.
839
+ def yield_control
840
+ BuiltIn::YieldControl.new
841
+ end
842
+ alias_matcher :a_block_yielding_control, :yield_control
843
+ alias_matcher :yielding_control, :yield_control
844
+
845
+ # Passes if the method called in the expect block yields with
846
+ # no arguments. Fails if it does not yield, or yields with arguments.
847
+ #
848
+ # @example
849
+ #
850
+ # expect { |b| User.transaction(&b) }.to yield_with_no_args
851
+ # expect { |b| 5.tap(&b) }.not_to yield_with_no_args # because it yields with `5`
852
+ # expect { |b| "a".to_sym(&b) }.not_to yield_with_no_args # because it does not yield
853
+ #
854
+ # @note Your expect block must accept a parameter and pass it on to
855
+ # the method-under-test as a block.
856
+ # @note This matcher is not designed for use with methods that yield
857
+ # multiple times.
858
+ def yield_with_no_args
859
+ BuiltIn::YieldWithNoArgs.new
860
+ end
861
+ alias_matcher :a_block_yielding_with_no_args, :yield_with_no_args
862
+ alias_matcher :yielding_with_no_args, :yield_with_no_args
863
+
864
+ # Given no arguments, matches if the method called in the expect
865
+ # block yields with arguments (regardless of what they are or how
866
+ # many there are).
867
+ #
868
+ # Given arguments, matches if the method called in the expect block
869
+ # yields with arguments that match the given arguments.
870
+ #
871
+ # Argument matching is done using `===` (the case match operator)
872
+ # and `==`. If the expected and actual arguments match with either
873
+ # operator, the matcher will pass.
874
+ #
875
+ # @example
876
+ #
877
+ # expect { |b| 5.tap(&b) }.to yield_with_args # because #tap yields an arg
878
+ # expect { |b| 5.tap(&b) }.to yield_with_args(5) # because 5 == 5
879
+ # expect { |b| 5.tap(&b) }.to yield_with_args(Fixnum) # because Fixnum === 5
880
+ # expect { |b| File.open("f.txt", &b) }.to yield_with_args(/txt/) # because /txt/ === "f.txt"
881
+ #
882
+ # expect { |b| User.transaction(&b) }.not_to yield_with_args # because it yields no args
883
+ # expect { |b| 5.tap(&b) }.not_to yield_with_args(1, 2, 3)
884
+ #
885
+ # @note Your expect block must accept a parameter and pass it on to
886
+ # the method-under-test as a block.
887
+ # @note This matcher is not designed for use with methods that yield
888
+ # multiple times.
889
+ def yield_with_args(*args)
890
+ BuiltIn::YieldWithArgs.new(*args)
891
+ end
892
+ alias_matcher :a_block_yielding_with_args, :yield_with_args
893
+ alias_matcher :yielding_with_args, :yield_with_args
894
+
895
+ # Designed for use with methods that repeatedly yield (such as
896
+ # iterators). Passes if the method called in the expect block yields
897
+ # multiple times with arguments matching those given.
898
+ #
899
+ # Argument matching is done using `===` (the case match operator)
900
+ # and `==`. If the expected and actual arguments match with either
901
+ # operator, the matcher will pass.
902
+ #
903
+ # @example
904
+ #
905
+ # expect { |b| [1, 2, 3].each(&b) }.to yield_successive_args(1, 2, 3)
906
+ # expect { |b| { :a => 1, :b => 2 }.each(&b) }.to yield_successive_args([:a, 1], [:b, 2])
907
+ # expect { |b| [1, 2, 3].each(&b) }.not_to yield_successive_args(1, 2)
908
+ #
909
+ # @note Your expect block must accept a parameter and pass it on to
910
+ # the method-under-test as a block.
911
+ def yield_successive_args(*args)
912
+ BuiltIn::YieldSuccessiveArgs.new(*args)
913
+ end
914
+ alias_matcher :a_block_yielding_successive_args, :yield_successive_args
915
+ alias_matcher :yielding_successive_args, :yield_successive_args
916
+
917
+ # Delegates to {RSpec::Expectations.configuration}.
918
+ # This is here because rspec-core's `expect_with` option
919
+ # looks for a `configuration` method on the mixin
920
+ # (`RSpec::Matchers`) to yield to a block.
921
+ # @return [RSpec::Expectations::Configuration] the configuration object
922
+ def self.configuration
923
+ Expectations.configuration
924
+ end
925
+
926
+ private
927
+
928
+ BE_PREDICATE_REGEX = /^(be_(?:an?_)?)(.*)/
929
+ HAS_REGEX = /^(?:have_)(.*)/
930
+
931
+ def method_missing(method, *args, &block)
932
+ case method.to_s
933
+ when BE_PREDICATE_REGEX
934
+ BuiltIn::BePredicate.new(method, *args, &block)
935
+ when HAS_REGEX
936
+ BuiltIn::Has.new(method, *args, &block)
937
+ else
938
+ super
939
+ end
940
+ end
941
+
942
+ # @api private
943
+ def self.is_a_matcher?(obj)
944
+ return true if ::RSpec::Matchers::BuiltIn::BaseMatcher === obj
945
+ begin
946
+ return false if obj.respond_to?(:i_respond_to_everything_so_im_not_really_a_matcher)
947
+ rescue NoMethodError
948
+ # Some objects, like BasicObject, don't implemented standard
949
+ # reflection methods.
950
+ return false
951
+ end
952
+ return false unless obj.respond_to?(:matches?)
953
+
954
+ obj.respond_to?(:failure_message) ||
955
+ obj.respond_to?(:failure_message_for_should) # support legacy matchers
956
+ end
957
+
958
+ ::RSpec::Support.register_matcher_definition do |obj|
959
+ is_a_matcher?(obj)
960
+ end
961
+
962
+ # @api private
963
+ def self.is_a_describable_matcher?(obj)
964
+ is_a_matcher?(obj) && obj.respond_to?(:description)
965
+ end
966
+ end
967
+ end