opal-rspec 0.4.3 → 0.5.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/CHANGELOG.md +9 -3
- data/Gemfile +6 -5
- data/README.md +73 -13
- data/Rakefile +108 -12
- data/lib/opal/rspec/version.rb +1 -1
- data/lib/opal/rspec.rb +35 -12
- data/opal/opal/rspec/async/async_example.rb +87 -0
- data/opal/opal/rspec/async/example_group.rb +94 -0
- data/opal/opal/rspec/async/hooks.rb +46 -0
- data/opal/opal/rspec/async/legacy.rb +50 -0
- data/opal/opal/rspec/async.rb +4 -289
- data/opal/opal/rspec/browser_formatter.rb +55 -18
- data/opal/opal/rspec/fixes/caller_filter.rb +6 -0
- data/opal/opal/rspec/fixes/example.rb +20 -0
- data/opal/opal/rspec/fixes/example_groups.rb +32 -0
- data/opal/opal/rspec/fixes/expectations.rb +21 -0
- data/opal/opal/rspec/fixes/formatter.rb +62 -0
- data/opal/opal/rspec/fixes/kernel.rb +35 -0
- data/opal/opal/rspec/fixes/matchers.rb +15 -0
- data/opal/opal/rspec/fixes/mocks.rb +13 -0
- data/opal/opal/rspec/fixes/reporter.rb +12 -0
- data/opal/opal/rspec/fixes.rb +11 -115
- data/opal/opal/rspec/pre_require_fixes.rb +4 -0
- data/opal/opal/rspec/requires.rb +103 -35
- data/opal/opal/rspec/runner.rb +19 -15
- data/opal/opal/rspec/text_formatter.rb +24 -10
- data/opal/opal/rspec.rb +4 -9
- data/opal-rspec.gemspec +5 -2
- data/{vendor_lib → rspec/lib}/rspec/version.rb +1 -1
- data/{vendor_lib → rspec/lib}/rspec.rb +0 -0
- data/rspec-core/benchmarks/call_v_yield.rb +81 -0
- data/rspec-core/benchmarks/check_inclusion.rb +125 -0
- data/rspec-core/benchmarks/define_method_v_attr_reader_v_def.rb +81 -0
- data/rspec-core/benchmarks/eager_vs_lazy_metadata/define_examples.rb +22 -0
- data/rspec-core/benchmarks/eager_vs_lazy_metadata.rb +126 -0
- data/rspec-core/benchmarks/filter_object.rb +35 -0
- data/rspec-core/benchmarks/index_v_take_while.rb +47 -0
- data/rspec-core/benchmarks/map_then_flatten_vs_flat_map_benchmarks.rb +94 -0
- data/rspec-core/benchmarks/require_relative_v_require.rb +75 -0
- data/rspec-core/benchmarks/respond_to_v_defined.rb +72 -0
- data/rspec-core/benchmarks/several_regexps_v_one_big_one.rb +86 -0
- data/rspec-core/benchmarks/sort_by_v_shuffle.rb +83 -0
- data/rspec-core/benchmarks/to_proc_v_not_to_proc.rb +539 -0
- data/rspec-core/features/step_definitions/additional_cli_steps.rb +126 -0
- data/rspec-core/features/step_definitions/core_standalone_steps.rb +12 -0
- data/rspec-core/features/support/env.rb +21 -0
- data/rspec-core/features/support/require_expect_syntax_in_aruba_specs.rb +29 -0
- data/rspec-core/features/support/rubinius.rb +6 -0
- data/{vendor_lib → rspec-core/lib}/rspec/autorun.rb +0 -0
- data/{vendor_lib → rspec-core/lib}/rspec/core/backport_random.rb +40 -6
- data/rspec-core/lib/rspec/core/backtrace_formatter.rb +66 -0
- data/{vendor_lib → rspec-core/lib}/rspec/core/configuration.rb +561 -250
- data/rspec-core/lib/rspec/core/configuration_options.rb +173 -0
- data/rspec-core/lib/rspec/core/drb.rb +111 -0
- data/rspec-core/lib/rspec/core/dsl.rb +93 -0
- data/rspec-core/lib/rspec/core/example.rb +502 -0
- data/rspec-core/lib/rspec/core/example_group.rb +606 -0
- data/rspec-core/lib/rspec/core/filter_manager.rb +259 -0
- data/{vendor_lib → rspec-core/lib}/rspec/core/flat_map.rb +1 -0
- data/rspec-core/lib/rspec/core/formatters/base_formatter.rb +67 -0
- data/rspec-core/lib/rspec/core/formatters/base_text_formatter.rb +76 -0
- data/rspec-core/lib/rspec/core/formatters/console_codes.rb +64 -0
- data/{vendor_lib → rspec-core/lib}/rspec/core/formatters/deprecation_formatter.rb +65 -36
- data/rspec-core/lib/rspec/core/formatters/documentation_formatter.rb +68 -0
- data/{vendor_lib → rspec-core/lib}/rspec/core/formatters/helpers.rb +18 -13
- data/{vendor_lib → rspec-core/lib}/rspec/core/formatters/html_formatter.rb +69 -75
- data/{vendor_lib → rspec-core/lib}/rspec/core/formatters/html_printer.rb +17 -22
- data/rspec-core/lib/rspec/core/formatters/json_formatter.rb +94 -0
- data/rspec-core/lib/rspec/core/formatters/profile_formatter.rb +65 -0
- data/rspec-core/lib/rspec/core/formatters/progress_formatter.rb +28 -0
- data/rspec-core/lib/rspec/core/formatters/protocol.rb +163 -0
- data/{vendor_lib → rspec-core/lib}/rspec/core/formatters/snippet_extractor.rb +15 -12
- data/rspec-core/lib/rspec/core/formatters.rb +240 -0
- data/rspec-core/lib/rspec/core/hooks.rb +591 -0
- data/{vendor_lib → rspec-core/lib}/rspec/core/memoized_helpers.rb +82 -41
- data/rspec-core/lib/rspec/core/metadata.rb +437 -0
- data/rspec-core/lib/rspec/core/metadata_filter.rb +95 -0
- data/rspec-core/lib/rspec/core/minitest_assertions_adapter.rb +28 -0
- data/rspec-core/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
- data/{vendor_lib/rspec/core/mocking/with_mocha.rb → rspec-core/lib/rspec/core/mocking_adapters/mocha.rb} +21 -16
- data/rspec-core/lib/rspec/core/mocking_adapters/null.rb +14 -0
- data/rspec-core/lib/rspec/core/mocking_adapters/rr.rb +31 -0
- data/rspec-core/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
- data/rspec-core/lib/rspec/core/notifications.rb +542 -0
- data/{vendor_lib → rspec-core/lib}/rspec/core/option_parser.rb +53 -65
- data/{vendor_lib → rspec-core/lib}/rspec/core/ordering.rb +11 -10
- data/rspec-core/lib/rspec/core/pending.rb +163 -0
- data/rspec-core/lib/rspec/core/project_initializer/spec/spec_helper.rb +89 -0
- data/rspec-core/lib/rspec/core/project_initializer.rb +48 -0
- data/rspec-core/lib/rspec/core/rake_task.rb +187 -0
- data/rspec-core/lib/rspec/core/reporter.rb +149 -0
- data/{vendor_lib → rspec-core/lib}/rspec/core/ruby_project.rb +3 -2
- data/rspec-core/lib/rspec/core/runner.rb +158 -0
- data/{vendor_lib → rspec-core/lib}/rspec/core/shared_context.rb +7 -5
- data/rspec-core/lib/rspec/core/shared_example_group.rb +182 -0
- data/rspec-core/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
- data/rspec-core/lib/rspec/core/version.rb +9 -0
- data/rspec-core/lib/rspec/core/warnings.rb +40 -0
- data/{vendor_lib → rspec-core/lib}/rspec/core/world.rb +78 -26
- data/{vendor_lib → rspec-core/lib}/rspec/core.rb +64 -98
- data/rspec-core/spec/command_line/order_spec.rb +213 -0
- data/rspec-core/spec/rspec/core/backtrace_formatter_spec.rb +306 -0
- data/rspec-core/spec/rspec/core/configuration_options_spec.rb +425 -0
- data/rspec-core/spec/rspec/core/configuration_spec.rb +1963 -0
- data/rspec-core/spec/rspec/core/drb_spec.rb +278 -0
- data/rspec-core/spec/rspec/core/dsl_spec.rb +85 -0
- data/rspec-core/spec/rspec/core/example_execution_result_spec.rb +142 -0
- data/rspec-core/spec/rspec/core/example_group_constants_spec.rb +16 -0
- data/rspec-core/spec/rspec/core/example_group_spec.rb +1621 -0
- data/rspec-core/spec/rspec/core/example_spec.rb +662 -0
- data/rspec-core/spec/rspec/core/failed_example_notification_spec.rb +25 -0
- data/rspec-core/spec/rspec/core/filter_manager_spec.rb +299 -0
- data/rspec-core/spec/rspec/core/formatters/base_text_formatter_spec.rb +182 -0
- data/rspec-core/spec/rspec/core/formatters/console_codes_spec.rb +65 -0
- data/rspec-core/spec/rspec/core/formatters/deprecation_formatter_spec.rb +225 -0
- data/rspec-core/spec/rspec/core/formatters/documentation_formatter_spec.rb +111 -0
- data/rspec-core/spec/rspec/core/formatters/helpers_spec.rb +104 -0
- data/rspec-core/spec/rspec/core/formatters/html_formatter_spec.rb +111 -0
- data/rspec-core/spec/rspec/core/formatters/json_formatter_spec.rb +183 -0
- data/rspec-core/spec/rspec/core/formatters/profile_formatter_spec.rb +99 -0
- data/rspec-core/spec/rspec/core/formatters/progress_formatter_spec.rb +55 -0
- data/rspec-core/spec/rspec/core/formatters/snippet_extractor_spec.rb +26 -0
- data/rspec-core/spec/rspec/core/formatters_spec.rb +160 -0
- data/rspec-core/spec/rspec/core/hooks_filtering_spec.rb +227 -0
- data/rspec-core/spec/rspec/core/hooks_spec.rb +447 -0
- data/rspec-core/spec/rspec/core/memoized_helpers_spec.rb +537 -0
- data/rspec-core/spec/rspec/core/metadata_filter_spec.rb +181 -0
- data/rspec-core/spec/rspec/core/metadata_spec.rb +642 -0
- data/rspec-core/spec/rspec/core/notifications_spec.rb +92 -0
- data/rspec-core/spec/rspec/core/option_parser_spec.rb +270 -0
- data/rspec-core/spec/rspec/core/ordering_spec.rb +102 -0
- data/rspec-core/spec/rspec/core/pending_example_spec.rb +221 -0
- data/rspec-core/spec/rspec/core/pending_spec.rb +8 -0
- data/rspec-core/spec/rspec/core/project_initializer_spec.rb +123 -0
- data/rspec-core/spec/rspec/core/rake_task_spec.rb +351 -0
- data/rspec-core/spec/rspec/core/random_spec.rb +47 -0
- data/rspec-core/spec/rspec/core/reporter_spec.rb +198 -0
- data/rspec-core/spec/rspec/core/resources/a_bar.rb +0 -0
- data/rspec-core/spec/rspec/core/resources/a_foo.rb +0 -0
- data/rspec-core/spec/rspec/core/resources/a_spec.rb +1 -0
- data/rspec-core/spec/rspec/core/resources/acceptance/bar.rb +0 -0
- data/rspec-core/spec/rspec/core/resources/acceptance/foo_spec.rb +0 -0
- data/rspec-core/spec/rspec/core/resources/custom_example_group_runner.rb +14 -0
- data/rspec-core/spec/rspec/core/resources/formatter_specs.rb +58 -0
- data/rspec-core/spec/rspec/core/resources/utf8_encoded.rb +9 -0
- data/rspec-core/spec/rspec/core/rspec_matchers_spec.rb +45 -0
- data/rspec-core/spec/rspec/core/ruby_project_spec.rb +26 -0
- data/rspec-core/spec/rspec/core/runner_spec.rb +309 -0
- data/rspec-core/spec/rspec/core/shared_context_spec.rb +102 -0
- data/rspec-core/spec/rspec/core/shared_example_group_spec.rb +268 -0
- data/rspec-core/spec/rspec/core/warnings_spec.rb +72 -0
- data/rspec-core/spec/rspec/core/world_spec.rb +142 -0
- data/rspec-core/spec/rspec/core_spec.rb +103 -0
- data/rspec-core/spec/spec_helper.rb +89 -0
- data/rspec-core/spec/support/config_options_helper.rb +13 -0
- data/rspec-core/spec/support/fake_minitest/minitest/minitest_assertions.rb +4 -0
- data/rspec-core/spec/support/fake_minitest/minitest.rb +0 -0
- data/rspec-core/spec/support/fake_minitest/test/unit/assertions.rb +6 -0
- data/rspec-core/spec/support/formatter_support.rb +263 -0
- data/rspec-core/spec/support/helper_methods.rb +26 -0
- data/rspec-core/spec/support/isolated_home_directory.rb +16 -0
- data/rspec-core/spec/support/matchers.rb +103 -0
- data/rspec-core/spec/support/mathn_integration_support.rb +12 -0
- data/rspec-core/spec/support/sandboxing.rb +50 -0
- data/rspec-core/spec/support/shared_example_groups.rb +43 -0
- data/rspec-core/spec/support/spec_files.rb +44 -0
- data/rspec-expectations/benchmarks/2.x_vs_3.x_matcher_dsl_implementation.rb +253 -0
- data/rspec-expectations/benchmarks/autoload_v_require.rb +25 -0
- data/rspec-expectations/benchmarks/cloning_matchers.rb +19 -0
- data/rspec-expectations/benchmarks/default_messages_as_methods_v_blocks.rb +27 -0
- data/rspec-expectations/benchmarks/example_spec.rb +9 -0
- data/rspec-expectations/benchmarks/include_v_superclass.rb +39 -0
- data/rspec-expectations/benchmarks/match_array/failing_with_distinct_items.rb +147 -0
- data/rspec-expectations/benchmarks/match_array/failing_with_duplicate_items.rb +122 -0
- data/rspec-expectations/benchmarks/match_array/passing_with_distinct_items.rb +154 -0
- data/rspec-expectations/benchmarks/match_array/passing_with_duplicate_items.rb +132 -0
- data/rspec-expectations/benchmarks/match_array/rubyprof/passing_with_distinct_items.rb +9 -0
- data/rspec-expectations/benchmarks/matcher_dsl_vs_classes.rb +180 -0
- data/rspec-expectations/benchmarks/method_to_proc.rb +72 -0
- data/rspec-expectations/benchmarks/set_vs_array_include.rb +68 -0
- data/rspec-expectations/features/step_definitions/additional_cli_steps.rb +22 -0
- data/rspec-expectations/features/support/disallow_certain_apis.rb +34 -0
- data/rspec-expectations/features/support/env.rb +21 -0
- data/rspec-expectations/features/support/rubinius.rb +6 -0
- data/{vendor_lib/rspec/matchers → rspec-expectations/lib/rspec/expectations}/configuration.rb +50 -16
- data/rspec-expectations/lib/rspec/expectations/expectation_target.rb +119 -0
- data/rspec-expectations/lib/rspec/expectations/fail_with.rb +34 -0
- data/rspec-expectations/lib/rspec/expectations/handler.rb +167 -0
- data/rspec-expectations/lib/rspec/expectations/minitest_integration.rb +17 -0
- data/rspec-expectations/lib/rspec/expectations/syntax.rb +132 -0
- data/{vendor_lib → rspec-expectations/lib}/rspec/expectations/version.rb +1 -1
- data/rspec-expectations/lib/rspec/expectations.rb +68 -0
- data/rspec-expectations/lib/rspec/matchers/aliased_matcher.rb +116 -0
- data/rspec-expectations/lib/rspec/matchers/built_in/all.rb +85 -0
- data/rspec-expectations/lib/rspec/matchers/built_in/base_matcher.rb +132 -0
- data/rspec-expectations/lib/rspec/matchers/built_in/be.rb +277 -0
- data/rspec-expectations/lib/rspec/matchers/built_in/be_between.rb +77 -0
- data/{vendor_lib → rspec-expectations/lib}/rspec/matchers/built_in/be_instance_of.rb +11 -4
- data/{vendor_lib → rspec-expectations/lib}/rspec/matchers/built_in/be_kind_of.rb +5 -0
- data/rspec-expectations/lib/rspec/matchers/built_in/be_within.rb +72 -0
- data/rspec-expectations/lib/rspec/matchers/built_in/change.rb +337 -0
- data/rspec-expectations/lib/rspec/matchers/built_in/compound.rb +258 -0
- data/rspec-expectations/lib/rspec/matchers/built_in/contain_exactly.rb +249 -0
- data/{vendor_lib → rspec-expectations/lib}/rspec/matchers/built_in/cover.rb +3 -0
- data/rspec-expectations/lib/rspec/matchers/built_in/eq.rb +75 -0
- data/{vendor_lib → rspec-expectations/lib}/rspec/matchers/built_in/eql.rb +17 -6
- data/rspec-expectations/lib/rspec/matchers/built_in/equal.rb +81 -0
- data/rspec-expectations/lib/rspec/matchers/built_in/exist.rb +86 -0
- data/rspec-expectations/lib/rspec/matchers/built_in/has.rb +101 -0
- data/rspec-expectations/lib/rspec/matchers/built_in/have_attributes.rb +84 -0
- data/rspec-expectations/lib/rspec/matchers/built_in/include.rb +105 -0
- data/rspec-expectations/lib/rspec/matchers/built_in/match.rb +29 -0
- data/rspec-expectations/lib/rspec/matchers/built_in/operators.rb +119 -0
- data/rspec-expectations/lib/rspec/matchers/built_in/output.rb +152 -0
- data/{vendor_lib → rspec-expectations/lib}/rspec/matchers/built_in/raise_error.rb +66 -46
- data/{vendor_lib → rspec-expectations/lib}/rspec/matchers/built_in/respond_to.rb +43 -26
- data/{vendor_lib → rspec-expectations/lib}/rspec/matchers/built_in/satisfy.rb +13 -4
- data/rspec-expectations/lib/rspec/matchers/built_in/start_and_end_with.rb +82 -0
- data/{vendor_lib → rspec-expectations/lib}/rspec/matchers/built_in/throw_symbol.rb +51 -13
- data/rspec-expectations/lib/rspec/matchers/built_in/yield.rb +420 -0
- data/rspec-expectations/lib/rspec/matchers/built_in.rb +52 -0
- data/rspec-expectations/lib/rspec/matchers/composable.rb +183 -0
- data/{vendor_lib/rspec/matchers/matcher.rb → rspec-expectations/lib/rspec/matchers/dsl.rb} +120 -30
- data/{vendor_lib → rspec-expectations/lib}/rspec/matchers/generated_descriptions.rb +13 -6
- data/rspec-expectations/lib/rspec/matchers/matcher_delegator.rb +33 -0
- data/rspec-expectations/lib/rspec/matchers/matcher_protocol.rb +99 -0
- data/rspec-expectations/lib/rspec/matchers/pretty.rb +77 -0
- data/{vendor_lib → rspec-expectations/lib}/rspec/matchers.rb +408 -74
- data/rspec-expectations/spec/rspec/expectations/configuration_spec.rb +226 -0
- data/rspec-expectations/spec/rspec/expectations/expectation_target_spec.rb +147 -0
- data/rspec-expectations/spec/rspec/expectations/extensions/kernel_spec.rb +69 -0
- data/rspec-expectations/spec/rspec/expectations/fail_with_spec.rb +73 -0
- data/rspec-expectations/spec/rspec/expectations/handler_spec.rb +200 -0
- data/rspec-expectations/spec/rspec/expectations/minitest_integration_spec.rb +25 -0
- data/rspec-expectations/spec/rspec/expectations/syntax_spec.rb +93 -0
- data/rspec-expectations/spec/rspec/expectations_spec.rb +15 -0
- data/rspec-expectations/spec/rspec/matchers/aliased_matcher_spec.rb +113 -0
- data/rspec-expectations/spec/rspec/matchers/aliases_spec.rb +455 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/all_spec.rb +212 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/base_matcher_spec.rb +140 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/be_between_spec.rb +157 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/be_instance_of_spec.rb +61 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/be_kind_of_spec.rb +39 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/be_spec.rb +685 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/be_within_spec.rb +139 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/change_spec.rb +829 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/compound_spec.rb +537 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/contain_exactly_spec.rb +556 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/cover_spec.rb +67 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/eq_spec.rb +176 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/eql_spec.rb +39 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/equal_spec.rb +130 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/exist_spec.rb +139 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/has_spec.rb +179 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/have_attributes_spec.rb +177 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/include_spec.rb +587 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/match_spec.rb +100 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/operators_spec.rb +250 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/output_spec.rb +168 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/raise_error_spec.rb +446 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/respond_to_spec.rb +290 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/satisfy_spec.rb +42 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/start_and_end_with_spec.rb +347 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/throw_symbol_spec.rb +133 -0
- data/rspec-expectations/spec/rspec/matchers/built_in/yield_spec.rb +643 -0
- data/rspec-expectations/spec/rspec/matchers/composable_spec.rb +77 -0
- data/rspec-expectations/spec/rspec/matchers/define_negated_matcher_spec.rb +199 -0
- data/rspec-expectations/spec/rspec/matchers/description_generation_spec.rb +189 -0
- data/rspec-expectations/spec/rspec/matchers/dsl_spec.rb +1036 -0
- data/rspec-expectations/spec/rspec/matchers/legacy_spec.rb +104 -0
- data/rspec-expectations/spec/rspec/matchers_spec.rb +108 -0
- data/rspec-expectations/spec/spec_helper.rb +94 -0
- data/rspec-expectations/spec/support/matchers.rb +54 -0
- data/rspec-expectations/spec/support/shared_examples.rb +101 -0
- data/rspec-mocks/benchmarks/double_creation.rb +66 -0
- data/rspec-mocks/benchmarks/each_value_v_values_each.rb +58 -0
- data/rspec-mocks/benchmarks/find_original_method_early.rb +64 -0
- data/rspec-mocks/benchmarks/method_defined_at_any_visibility.rb +101 -0
- data/rspec-mocks/benchmarks/thread_safety.rb +24 -0
- data/rspec-mocks/benchmarks/transfer_nested_constants.rb +77 -0
- data/rspec-mocks/features/step_definitions/additional_cli_steps.rb +21 -0
- data/rspec-mocks/features/support/disallow_certain_apis.rb +24 -0
- data/rspec-mocks/features/support/env.rb +22 -0
- data/rspec-mocks/features/support/rubinius.rb +6 -0
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/any_instance/chain.rb +19 -2
- data/rspec-mocks/lib/rspec/mocks/any_instance/expect_chain_chain.rb +35 -0
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/any_instance/expectation_chain.rb +12 -11
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/any_instance/message_chains.rb +15 -5
- data/rspec-mocks/lib/rspec/mocks/any_instance/proxy.rb +116 -0
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/any_instance/recorder.rb +105 -38
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/any_instance/stub_chain.rb +9 -9
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/any_instance/stub_chain_chain.rb +5 -1
- data/rspec-mocks/lib/rspec/mocks/any_instance.rb +10 -0
- data/rspec-mocks/lib/rspec/mocks/argument_list_matcher.rb +72 -0
- data/rspec-mocks/lib/rspec/mocks/argument_matchers.rb +282 -0
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/configuration.rb +60 -14
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/error_generator.rb +93 -43
- data/rspec-mocks/lib/rspec/mocks/example_methods.rb +379 -0
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/instance_method_stasher.rb +30 -7
- data/rspec-mocks/lib/rspec/mocks/marshal_extension.rb +41 -0
- data/rspec-mocks/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/matchers/have_received.rb +36 -14
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/matchers/receive.rb +24 -30
- data/rspec-mocks/lib/rspec/mocks/matchers/receive_message_chain.rb +66 -0
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/matchers/receive_messages.rb +9 -10
- data/rspec-mocks/lib/rspec/mocks/message_chain.rb +91 -0
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/message_expectation.rb +156 -105
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/method_double.rb +81 -30
- data/rspec-mocks/lib/rspec/mocks/method_reference.rb +155 -0
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/mutate_const.rb +84 -166
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/object_reference.rb +19 -18
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/order_group.rb +4 -5
- data/rspec-mocks/lib/rspec/mocks/proxy.rb +431 -0
- data/rspec-mocks/lib/rspec/mocks/space.rb +221 -0
- data/rspec-mocks/lib/rspec/mocks/standalone.rb +3 -0
- data/rspec-mocks/lib/rspec/mocks/syntax.rb +329 -0
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/targets.rb +20 -13
- data/rspec-mocks/lib/rspec/mocks/test_double.rb +135 -0
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/verifying_double.rb +69 -19
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/verifying_message_expecation.rb +23 -21
- data/{vendor_lib → rspec-mocks/lib}/rspec/mocks/verifying_proxy.rb +58 -38
- data/rspec-mocks/lib/rspec/mocks/version.rb +9 -0
- data/rspec-mocks/lib/rspec/mocks.rb +126 -0
- data/rspec-mocks/spec/rspec/mocks/and_call_original_spec.rb +267 -0
- data/rspec-mocks/spec/rspec/mocks/and_return_spec.rb +21 -0
- data/rspec-mocks/spec/rspec/mocks/and_wrap_original_spec.rb +63 -0
- data/rspec-mocks/spec/rspec/mocks/and_yield_spec.rb +161 -0
- data/rspec-mocks/spec/rspec/mocks/any_instance/message_chains_spec.rb +39 -0
- data/rspec-mocks/spec/rspec/mocks/any_instance_spec.rb +1242 -0
- data/rspec-mocks/spec/rspec/mocks/argument_matchers_spec.rb +336 -0
- data/rspec-mocks/spec/rspec/mocks/array_including_matcher_spec.rb +39 -0
- data/rspec-mocks/spec/rspec/mocks/at_least_spec.rb +147 -0
- data/rspec-mocks/spec/rspec/mocks/at_most_spec.rb +113 -0
- data/rspec-mocks/spec/rspec/mocks/before_all_spec.rb +75 -0
- data/rspec-mocks/spec/rspec/mocks/block_return_value_spec.rb +68 -0
- data/rspec-mocks/spec/rspec/mocks/combining_implementation_instructions_spec.rb +196 -0
- data/rspec-mocks/spec/rspec/mocks/configuration_spec.rb +175 -0
- data/rspec-mocks/spec/rspec/mocks/double_spec.rb +830 -0
- data/rspec-mocks/spec/rspec/mocks/example_methods_spec.rb +11 -0
- data/rspec-mocks/spec/rspec/mocks/expiration_spec.rb +90 -0
- data/rspec-mocks/spec/rspec/mocks/hash_excluding_matcher_spec.rb +65 -0
- data/rspec-mocks/spec/rspec/mocks/hash_including_matcher_spec.rb +92 -0
- data/rspec-mocks/spec/rspec/mocks/instance_method_stasher_spec.rb +72 -0
- data/rspec-mocks/spec/rspec/mocks/marshal_extension_spec.rb +67 -0
- data/rspec-mocks/spec/rspec/mocks/matchers/have_received_spec.rb +513 -0
- data/rspec-mocks/spec/rspec/mocks/matchers/receive_message_chain_spec.rb +227 -0
- data/rspec-mocks/spec/rspec/mocks/matchers/receive_messages_spec.rb +148 -0
- data/rspec-mocks/spec/rspec/mocks/matchers/receive_spec.rb +525 -0
- data/rspec-mocks/spec/rspec/mocks/methods_spec.rb +24 -0
- data/rspec-mocks/spec/rspec/mocks/mock_expectation_error_spec.rb +20 -0
- data/rspec-mocks/spec/rspec/mocks/mock_ordering_spec.rb +112 -0
- data/rspec-mocks/spec/rspec/mocks/multiple_return_value_spec.rb +130 -0
- data/rspec-mocks/spec/rspec/mocks/mutate_const_spec.rb +561 -0
- data/rspec-mocks/spec/rspec/mocks/nil_expectation_warning_spec.rb +52 -0
- data/rspec-mocks/spec/rspec/mocks/null_object_double_spec.rb +135 -0
- data/rspec-mocks/spec/rspec/mocks/once_counts_spec.rb +50 -0
- data/rspec-mocks/spec/rspec/mocks/order_group_spec.rb +26 -0
- data/rspec-mocks/spec/rspec/mocks/partial_double_spec.rb +379 -0
- data/rspec-mocks/spec/rspec/mocks/partial_double_using_mocks_directly_spec.rb +83 -0
- data/rspec-mocks/spec/rspec/mocks/precise_counts_spec.rb +66 -0
- data/rspec-mocks/spec/rspec/mocks/serialization_spec.rb +89 -0
- data/rspec-mocks/spec/rspec/mocks/should_syntax_spec.rb +539 -0
- data/rspec-mocks/spec/rspec/mocks/space_spec.rb +242 -0
- data/rspec-mocks/spec/rspec/mocks/spy_spec.rb +127 -0
- data/rspec-mocks/spec/rspec/mocks/stash_spec.rb +43 -0
- data/rspec-mocks/spec/rspec/mocks/stub_chain_spec.rb +166 -0
- data/rspec-mocks/spec/rspec/mocks/stub_implementation_spec.rb +98 -0
- data/rspec-mocks/spec/rspec/mocks/stub_spec.rb +520 -0
- data/rspec-mocks/spec/rspec/mocks/stubbed_message_expectations_spec.rb +56 -0
- data/rspec-mocks/spec/rspec/mocks/syntax_agnostic_message_matchers_spec.rb +99 -0
- data/rspec-mocks/spec/rspec/mocks/syntax_spec.rb +7 -0
- data/rspec-mocks/spec/rspec/mocks/test_double_spec.rb +53 -0
- data/rspec-mocks/spec/rspec/mocks/thrice_counts_spec.rb +72 -0
- data/rspec-mocks/spec/rspec/mocks/to_ary_spec.rb +52 -0
- data/rspec-mocks/spec/rspec/mocks/twice_counts_spec.rb +64 -0
- data/rspec-mocks/spec/rspec/mocks/verifying_doubles/class_double_with_class_loaded_spec.rb +118 -0
- data/rspec-mocks/spec/rspec/mocks/verifying_doubles/class_double_with_class_not_loaded_spec.rb +58 -0
- data/rspec-mocks/spec/rspec/mocks/verifying_doubles/construction_spec.rb +54 -0
- data/rspec-mocks/spec/rspec/mocks/verifying_doubles/expected_arg_verification_spec.rb +81 -0
- data/rspec-mocks/spec/rspec/mocks/verifying_doubles/instance_double_with_class_loaded_spec.rb +195 -0
- data/rspec-mocks/spec/rspec/mocks/verifying_doubles/instance_double_with_class_not_loaded_spec.rb +57 -0
- data/rspec-mocks/spec/rspec/mocks/verifying_doubles/method_visibility_spec.rb +129 -0
- data/rspec-mocks/spec/rspec/mocks/verifying_doubles/object_double_spec.rb +68 -0
- data/rspec-mocks/spec/rspec/mocks_spec.rb +199 -0
- data/rspec-mocks/spec/spec_helper.rb +131 -0
- data/rspec-mocks/spec/support/before_all_shared_example_group.rb +16 -0
- data/rspec-mocks/spec/support/doubled_classes.rb +74 -0
- data/rspec-mocks/spec/support/matchers.rb +15 -0
- data/rspec-support/benchmarks/caller.rb +81 -0
- data/{vendor_lib → rspec-support/lib}/rspec/support/caller_filter.rb +11 -4
- data/rspec-support/lib/rspec/support/differ.rb +214 -0
- data/rspec-support/lib/rspec/support/directory_maker.rb +61 -0
- data/rspec-support/lib/rspec/support/encoded_string.rb +69 -0
- data/rspec-support/lib/rspec/support/fuzzy_matcher.rb +48 -0
- data/rspec-support/lib/rspec/support/hunk_generator.rb +47 -0
- data/rspec-support/lib/rspec/support/matcher_definition.rb +31 -0
- data/rspec-support/lib/rspec/support/method_signature_verifier.rb +272 -0
- data/rspec-support/lib/rspec/support/os.rb +18 -0
- data/rspec-support/lib/rspec/support/recursive_const_methods.rb +76 -0
- data/rspec-support/lib/rspec/support/ruby_features.rb +45 -0
- data/rspec-support/lib/rspec/support/spec/deprecation_helpers.rb +60 -0
- data/rspec-support/lib/rspec/support/spec/formatting_support.rb +9 -0
- data/{vendor_lib → rspec-support/lib}/rspec/support/spec/in_sub_process.rb +5 -2
- data/rspec-support/lib/rspec/support/spec/prevent_load_time_warnings.rb +44 -0
- data/rspec-support/lib/rspec/support/spec/shell_out.rb +69 -0
- data/{vendor_lib → rspec-support/lib}/rspec/support/spec/stderr_splitter.rb +7 -5
- data/rspec-support/lib/rspec/support/spec/with_isolated_directory.rb +9 -0
- data/rspec-support/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
- data/rspec-support/lib/rspec/support/spec.rb +72 -0
- data/{vendor_lib → rspec-support/lib}/rspec/support/version.rb +1 -1
- data/rspec-support/lib/rspec/support/version_checker.rb +53 -0
- data/rspec-support/lib/rspec/support/warnings.rb +39 -0
- data/rspec-support/lib/rspec/support.rb +76 -0
- data/rspec-support/spec/rspec/support/caller_filter_spec.rb +66 -0
- data/rspec-support/spec/rspec/support/differ_spec.rb +322 -0
- data/rspec-support/spec/rspec/support/directory_maker_spec.rb +58 -0
- data/rspec-support/spec/rspec/support/encoded_string_spec.rb +86 -0
- data/rspec-support/spec/rspec/support/fuzzy_matcher_spec.rb +179 -0
- data/rspec-support/spec/rspec/support/method_signature_verifier_spec.rb +357 -0
- data/rspec-support/spec/rspec/support/os_spec.rb +36 -0
- data/rspec-support/spec/rspec/support/recursive_const_methods_spec.rb +49 -0
- data/rspec-support/spec/rspec/support/spec/in_sub_process_spec.rb +36 -0
- data/rspec-support/spec/rspec/support/spec/prevent_load_time_warnings_spec.rb +10 -0
- data/rspec-support/spec/rspec/support/spec/shell_out_spec.rb +44 -0
- data/rspec-support/spec/rspec/support/spec/stderr_splitter_spec.rb +60 -0
- data/rspec-support/spec/rspec/support/spec/with_isolated_std_err_spec.rb +21 -0
- data/rspec-support/spec/rspec/support/version_checker_spec.rb +29 -0
- data/rspec-support/spec/rspec/support/warnings_spec.rb +66 -0
- data/rspec-support/spec/rspec/support_spec.rb +119 -0
- data/rspec-support/spec/spec_helper.rb +2 -0
- data/spec/after_hooks_spec.rb +140 -0
- data/spec/around_hooks_spec.rb +223 -0
- data/spec/async_spec.rb +147 -1
- data/spec/before_hooks_spec.rb +183 -0
- data/spec/example_spec.rb +11 -0
- data/spec/matchers_spec.rb +4 -0
- data/spec/skip_pending_spec.rb +43 -0
- data/spec/subject_spec.rb +87 -0
- data/util/create_requires.rb +45 -0
- metadata +443 -147
- data/spec/named_subject_spec.rb +0 -11
- data/vendor_lib/rspec/core/backtrace_formatter.rb +0 -65
- data/vendor_lib/rspec/core/command_line.rb +0 -36
- data/vendor_lib/rspec/core/configuration_options.rb +0 -143
- data/vendor_lib/rspec/core/drb_command_line.rb +0 -26
- data/vendor_lib/rspec/core/drb_options.rb +0 -87
- data/vendor_lib/rspec/core/dsl.rb +0 -26
- data/vendor_lib/rspec/core/example.rb +0 -312
- data/vendor_lib/rspec/core/example_group.rb +0 -540
- data/vendor_lib/rspec/core/filter_manager.rb +0 -224
- data/vendor_lib/rspec/core/formatters/base_formatter.rb +0 -291
- data/vendor_lib/rspec/core/formatters/base_text_formatter.rb +0 -307
- data/vendor_lib/rspec/core/formatters/documentation_formatter.rb +0 -67
- data/vendor_lib/rspec/core/formatters/json_formatter.rb +0 -99
- data/vendor_lib/rspec/core/formatters/progress_formatter.rb +0 -32
- data/vendor_lib/rspec/core/formatters.rb +0 -54
- data/vendor_lib/rspec/core/hooks.rb +0 -535
- data/vendor_lib/rspec/core/metadata.rb +0 -313
- data/vendor_lib/rspec/core/mocking/with_absolutely_nothing.rb +0 -11
- data/vendor_lib/rspec/core/mocking/with_flexmock.rb +0 -27
- data/vendor_lib/rspec/core/mocking/with_rr.rb +0 -27
- data/vendor_lib/rspec/core/mocking/with_rspec.rb +0 -27
- data/vendor_lib/rspec/core/pending.rb +0 -110
- data/vendor_lib/rspec/core/project_initializer.rb +0 -88
- data/vendor_lib/rspec/core/rake_task.rb +0 -128
- data/vendor_lib/rspec/core/reporter.rb +0 -132
- data/vendor_lib/rspec/core/runner.rb +0 -97
- data/vendor_lib/rspec/core/shared_example_group/collection.rb +0 -27
- data/vendor_lib/rspec/core/shared_example_group.rb +0 -146
- data/vendor_lib/rspec/core/version.rb +0 -7
- data/vendor_lib/rspec/core/warnings.rb +0 -22
- data/vendor_lib/rspec/expectations/differ.rb +0 -154
- data/vendor_lib/rspec/expectations/errors.rb +0 -9
- data/vendor_lib/rspec/expectations/expectation_target.rb +0 -87
- data/vendor_lib/rspec/expectations/extensions/object.rb +0 -29
- data/vendor_lib/rspec/expectations/extensions.rb +0 -1
- data/vendor_lib/rspec/expectations/fail_with.rb +0 -79
- data/vendor_lib/rspec/expectations/handler.rb +0 -68
- data/vendor_lib/rspec/expectations/syntax.rb +0 -182
- data/vendor_lib/rspec/expectations.rb +0 -75
- data/vendor_lib/rspec/matchers/built_in/base_matcher.rb +0 -68
- data/vendor_lib/rspec/matchers/built_in/be.rb +0 -213
- data/vendor_lib/rspec/matchers/built_in/be_within.rb +0 -55
- data/vendor_lib/rspec/matchers/built_in/change.rb +0 -141
- data/vendor_lib/rspec/matchers/built_in/eq.rb +0 -22
- data/vendor_lib/rspec/matchers/built_in/equal.rb +0 -48
- data/vendor_lib/rspec/matchers/built_in/exist.rb +0 -26
- data/vendor_lib/rspec/matchers/built_in/has.rb +0 -48
- data/vendor_lib/rspec/matchers/built_in/include.rb +0 -61
- data/vendor_lib/rspec/matchers/built_in/match.rb +0 -17
- data/vendor_lib/rspec/matchers/built_in/match_array.rb +0 -51
- data/vendor_lib/rspec/matchers/built_in/start_and_end_with.rb +0 -48
- data/vendor_lib/rspec/matchers/built_in/yield.rb +0 -297
- data/vendor_lib/rspec/matchers/built_in.rb +0 -39
- data/vendor_lib/rspec/matchers/compatibility.rb +0 -14
- data/vendor_lib/rspec/matchers/dsl.rb +0 -23
- data/vendor_lib/rspec/matchers/method_missing.rb +0 -12
- data/vendor_lib/rspec/matchers/operator_matcher.rb +0 -99
- data/vendor_lib/rspec/matchers/pretty.rb +0 -70
- data/vendor_lib/rspec/matchers/test_unit_integration.rb +0 -11
- data/vendor_lib/rspec/mocks/argument_list_matcher.rb +0 -104
- data/vendor_lib/rspec/mocks/argument_matchers.rb +0 -264
- data/vendor_lib/rspec/mocks/arity_calculator.rb +0 -66
- data/vendor_lib/rspec/mocks/errors.rb +0 -12
- data/vendor_lib/rspec/mocks/example_methods.rb +0 -201
- data/vendor_lib/rspec/mocks/extensions/marshal.rb +0 -17
- data/vendor_lib/rspec/mocks/framework.rb +0 -36
- data/vendor_lib/rspec/mocks/method_reference.rb +0 -95
- data/vendor_lib/rspec/mocks/mock.rb +0 -7
- data/vendor_lib/rspec/mocks/proxy.rb +0 -269
- data/vendor_lib/rspec/mocks/proxy_for_nil.rb +0 -37
- data/vendor_lib/rspec/mocks/space.rb +0 -95
- data/vendor_lib/rspec/mocks/standalone.rb +0 -3
- data/vendor_lib/rspec/mocks/stub_chain.rb +0 -51
- data/vendor_lib/rspec/mocks/syntax.rb +0 -374
- data/vendor_lib/rspec/mocks/test_double.rb +0 -109
- data/vendor_lib/rspec/mocks/version.rb +0 -7
- data/vendor_lib/rspec/mocks.rb +0 -100
- data/vendor_lib/rspec/support/spec/deprecation_helpers.rb +0 -29
- data/vendor_lib/rspec/support/spec.rb +0 -14
- data/vendor_lib/rspec/support/warnings.rb +0 -41
- data/vendor_lib/rspec/support.rb +0 -6
- data/vendor_lib/rspec-expectations.rb +0 -1
@@ -1,10 +1,11 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
require 'rspec/core/formatters/deprecation_formatter'
|
1
|
+
RSpec::Support.require_rspec_core "backtrace_formatter"
|
2
|
+
RSpec::Support.require_rspec_core "ruby_project"
|
3
|
+
RSpec::Support.require_rspec_core "formatters/deprecation_formatter"
|
5
4
|
|
6
5
|
module RSpec
|
7
6
|
module Core
|
7
|
+
# rubocop:disable Style/ClassLength
|
8
|
+
|
8
9
|
# Stores runtime configuration information.
|
9
10
|
#
|
10
11
|
# Configuration options are loaded from `~/.rspec`, `.rspec`,
|
@@ -21,9 +22,9 @@ module RSpec
|
|
21
22
|
#
|
22
23
|
# @example Hooks
|
23
24
|
# RSpec.configure do |c|
|
24
|
-
# c.before(:suite)
|
25
|
-
# c.before(:
|
26
|
-
# c.around(:
|
25
|
+
# c.before(:suite) { establish_connection }
|
26
|
+
# c.before(:example) { log_in_as :authorized }
|
27
|
+
# c.around(:example) { |ex| Database.transaction(&ex) }
|
27
28
|
# end
|
28
29
|
#
|
29
30
|
# @see RSpec.configure
|
@@ -31,6 +32,7 @@ module RSpec
|
|
31
32
|
class Configuration
|
32
33
|
include RSpec::Core::Hooks
|
33
34
|
|
35
|
+
# @private
|
34
36
|
class MustBeConfiguredBeforeExampleGroupsError < StandardError; end
|
35
37
|
|
36
38
|
# @private
|
@@ -41,11 +43,6 @@ module RSpec
|
|
41
43
|
end
|
42
44
|
end
|
43
45
|
|
44
|
-
# @private
|
45
|
-
def self.deprecate_alias_key
|
46
|
-
RSpec.deprecate("add_setting with :alias option", :replacement => ":alias_with")
|
47
|
-
end
|
48
|
-
|
49
46
|
# @private
|
50
47
|
def self.define_aliases(name, alias_name)
|
51
48
|
alias_method alias_name, name
|
@@ -55,7 +52,7 @@ module RSpec
|
|
55
52
|
|
56
53
|
# @private
|
57
54
|
def self.define_predicate_for(*names)
|
58
|
-
names.each {|name| alias_method "#{name}?", name}
|
55
|
+
names.each { |name| alias_method "#{name}?", name }
|
59
56
|
end
|
60
57
|
|
61
58
|
# @private
|
@@ -63,30 +60,38 @@ module RSpec
|
|
63
60
|
# Invoked by the `add_setting` instance method. Use that method on a
|
64
61
|
# `Configuration` instance rather than this class method.
|
65
62
|
def self.add_setting(name, opts={})
|
66
|
-
raise "Use the instance add_setting method if you want to set a default" if opts.
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
else
|
71
|
-
attr_writer name
|
72
|
-
define_reader name
|
73
|
-
define_predicate_for name
|
74
|
-
end
|
63
|
+
raise "Use the instance add_setting method if you want to set a default" if opts.key?(:default)
|
64
|
+
attr_writer name
|
65
|
+
add_read_only_setting name
|
66
|
+
|
75
67
|
Array(opts[:alias_with]).each do |alias_name|
|
76
68
|
define_aliases(name, alias_name)
|
77
69
|
end
|
78
70
|
end
|
79
71
|
|
72
|
+
# @private
|
73
|
+
#
|
74
|
+
# As `add_setting` but only add the reader
|
75
|
+
def self.add_read_only_setting(name, opts={})
|
76
|
+
raise "Use the instance add_setting method if you want to set a default" if opts.key?(:default)
|
77
|
+
define_reader name
|
78
|
+
define_predicate_for name
|
79
|
+
end
|
80
|
+
|
80
81
|
# @macro [attach] add_setting
|
81
|
-
#
|
82
|
+
# @!attribute [rw] $1
|
83
|
+
# @!method $1=(value)
|
82
84
|
#
|
83
85
|
# @macro [attach] define_reader
|
84
|
-
#
|
86
|
+
# @!attribute [r] $1
|
85
87
|
|
86
88
|
# @macro add_setting
|
87
89
|
# Path to use if no path is provided to the `rspec` command (default:
|
88
90
|
# `"spec"`). Allows you to just type `rspec` instead of `rspec spec` to
|
89
91
|
# run all the examples in the `spec` directory.
|
92
|
+
#
|
93
|
+
# Note: Other scripts invoking `rspec` indirectly will ignore this
|
94
|
+
# setting.
|
90
95
|
add_setting :default_path
|
91
96
|
|
92
97
|
# @macro add_setting
|
@@ -102,9 +107,44 @@ module RSpec
|
|
102
107
|
# Default: `$stderr`.
|
103
108
|
add_setting :error_stream
|
104
109
|
|
105
|
-
#
|
106
|
-
# Default:
|
107
|
-
|
110
|
+
# Indicates if the DSL has been exposed off of modules and `main`.
|
111
|
+
# Default: true
|
112
|
+
def expose_dsl_globally?
|
113
|
+
Core::DSL.exposed_globally?
|
114
|
+
end
|
115
|
+
|
116
|
+
# Use this to expose the core RSpec DSL via `Module` and the `main`
|
117
|
+
# object. It will be set automatically but you can override it to
|
118
|
+
# remove the DSL.
|
119
|
+
# Default: true
|
120
|
+
def expose_dsl_globally=(value)
|
121
|
+
if value
|
122
|
+
Core::DSL.expose_globally!
|
123
|
+
Core::SharedExampleGroup::TopLevelDSL.expose_globally!
|
124
|
+
else
|
125
|
+
Core::DSL.remove_globally!
|
126
|
+
Core::SharedExampleGroup::TopLevelDSL.remove_globally!
|
127
|
+
end
|
128
|
+
end
|
129
|
+
|
130
|
+
# Determines where deprecation warnings are printed.
|
131
|
+
# Defaults to `$stderr`.
|
132
|
+
# @return [IO, String] IO to write to or filename to write to
|
133
|
+
define_reader :deprecation_stream
|
134
|
+
|
135
|
+
# Determines where deprecation warnings are printed.
|
136
|
+
# @param value [IO, String] IO to write to or filename to write to
|
137
|
+
def deprecation_stream=(value)
|
138
|
+
if @reporter && !value.equal?(@deprecation_stream)
|
139
|
+
warn "RSpec's reporter has already been initialized with " \
|
140
|
+
"#{deprecation_stream.inspect} as the deprecation stream, so your change to "\
|
141
|
+
"`deprecation_stream` will be ignored. You should configure it earlier for " \
|
142
|
+
"it to take effect, or use the `--deprecation-out` CLI option. " \
|
143
|
+
"(Called from #{CallerFilter.first_non_rspec_line})"
|
144
|
+
else
|
145
|
+
@deprecation_stream = value
|
146
|
+
end
|
147
|
+
end
|
108
148
|
|
109
149
|
# @macro add_setting
|
110
150
|
# Clean up and exit after the first failure (default: `false`).
|
@@ -124,35 +164,46 @@ module RSpec
|
|
124
164
|
define_reader :requires
|
125
165
|
|
126
166
|
# @macro define_reader
|
127
|
-
# Returns dirs that have been prepended to the load path by
|
167
|
+
# Returns dirs that have been prepended to the load path by the `-I` command line option
|
128
168
|
define_reader :libs
|
129
169
|
|
130
170
|
# @macro add_setting
|
171
|
+
# Determines where RSpec will send its output.
|
131
172
|
# Default: `$stdout`.
|
132
|
-
# Also known as `output` and `out`
|
133
173
|
define_reader :output_stream
|
174
|
+
|
175
|
+
# Set the output stream for reporter
|
176
|
+
# @attr value [IO] value for output, defaults to $stdout
|
134
177
|
def output_stream=(value)
|
135
178
|
if @reporter && !value.equal?(@output_stream)
|
136
|
-
warn "RSpec's reporter has already been initialized with "
|
137
|
-
"#{output_stream.inspect} as the output stream, so your change to "
|
138
|
-
"`output_stream` will be ignored. You should configure it earlier for "
|
179
|
+
warn "RSpec's reporter has already been initialized with " \
|
180
|
+
"#{output_stream.inspect} as the output stream, so your change to "\
|
181
|
+
"`output_stream` will be ignored. You should configure it earlier for " \
|
139
182
|
"it to take effect. (Called from #{CallerFilter.first_non_rspec_line})"
|
140
183
|
else
|
141
184
|
@output_stream = value
|
142
185
|
end
|
143
186
|
end
|
144
187
|
|
145
|
-
# @macro
|
146
|
-
# Load files matching this pattern (default: `'
|
147
|
-
|
188
|
+
# @macro define_reader
|
189
|
+
# Load files matching this pattern (default: `'**{,/*/**}/*_spec.rb'`)
|
190
|
+
define_reader :pattern
|
148
191
|
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
192
|
+
# Set pattern to match files to load
|
193
|
+
# @attr value [String] the filename pattern to filter spec files by
|
194
|
+
def pattern=(value)
|
195
|
+
update_pattern_attr :pattern, value
|
196
|
+
end
|
197
|
+
|
198
|
+
# @macro define_reader
|
199
|
+
# Exclude files matching this pattern
|
200
|
+
define_reader :exclude_pattern
|
201
|
+
|
202
|
+
# Set pattern to match files to exclude
|
203
|
+
# @attr value [String] the filename pattern to exclude spec files by
|
204
|
+
def exclude_pattern=(value)
|
205
|
+
update_pattern_attr :exclude_pattern, value
|
154
206
|
end
|
155
|
-
alias :filename_pattern= :pattern=
|
156
207
|
|
157
208
|
# @macro add_setting
|
158
209
|
# Report the times for the slowest examples (default: `false`).
|
@@ -165,52 +216,64 @@ module RSpec
|
|
165
216
|
|
166
217
|
# @macro add_setting
|
167
218
|
# Color to use to indicate success.
|
168
|
-
# @param [Symbol]
|
219
|
+
# @param color [Symbol] defaults to `:green` but can be set to one of the
|
220
|
+
# following: `[:black, :white, :red, :green, :yellow,
|
221
|
+
# :blue, :magenta, :cyan]`
|
169
222
|
add_setting :success_color
|
170
223
|
|
171
224
|
# @macro add_setting
|
172
225
|
# Color to use to print pending examples.
|
173
|
-
# @param [Symbol]
|
226
|
+
# @param color [Symbol] defaults to `:yellow` but can be set to one of the
|
227
|
+
# following: `[:black, :white, :red, :green, :yellow,
|
228
|
+
# :blue, :magenta, :cyan]`
|
174
229
|
add_setting :pending_color
|
175
230
|
|
176
231
|
# @macro add_setting
|
177
232
|
# Color to use to indicate failure.
|
178
|
-
# @param [Symbol]
|
233
|
+
# @param color [Symbol] defaults to `:red` but can be set to one of the
|
234
|
+
# following: `[:black, :white, :red, :green, :yellow,
|
235
|
+
# :blue, :magenta, :cyan]`
|
179
236
|
add_setting :failure_color
|
180
237
|
|
181
238
|
# @macro add_setting
|
182
239
|
# The default output color.
|
183
|
-
# @param [Symbol]
|
240
|
+
# @param color [Symbol] defaults to `:white` but can be set to one of the
|
241
|
+
# following:`[:black, :white, :red, :green, :yellow,
|
242
|
+
# :blue, :magenta, :cyan]`
|
184
243
|
add_setting :default_color
|
185
244
|
|
186
245
|
# @macro add_setting
|
187
246
|
# Color used when a pending example is fixed.
|
188
|
-
# @param [Symbol]
|
247
|
+
# @param color [Symbol] defaults to `:blue` but can be set to one of the
|
248
|
+
# following: `[:black, :white, :red, :green, :yellow,
|
249
|
+
# :blue, :magenta, :cyan]`
|
189
250
|
add_setting :fixed_color
|
190
251
|
|
191
252
|
# @macro add_setting
|
192
253
|
# Color used to print details.
|
193
|
-
# @param [Symbol]
|
254
|
+
# @param color [Symbol] defaults to `:cyan` but can be set to one of the
|
255
|
+
# following: `[:black, :white, :red, :green, :yellow,
|
256
|
+
# :blue, :magenta, :cyan]`
|
194
257
|
add_setting :detail_color
|
195
258
|
|
196
|
-
# @macro add_setting
|
197
|
-
# When a block passed to pending fails (as expected), display the failure
|
198
|
-
# without reporting it as a failure (default: false).
|
199
|
-
add_setting :show_failures_in_pending_blocks
|
200
|
-
|
201
259
|
# Deprecated. This config option was added in RSpec 2 to pave the way
|
202
260
|
# for this being the default behavior in RSpec 3. Now this option is
|
203
261
|
# a no-op.
|
204
|
-
def treat_symbols_as_metadata_keys_with_true_values=(
|
205
|
-
RSpec.deprecate("RSpec::Core::Configuration#treat_symbols_as_metadata_keys_with_true_values="
|
262
|
+
def treat_symbols_as_metadata_keys_with_true_values=(_value)
|
263
|
+
RSpec.deprecate("RSpec::Core::Configuration#treat_symbols_as_metadata_keys_with_true_values=",
|
264
|
+
:message => "RSpec::Core::Configuration#treat_symbols_as_metadata_keys_with_true_values= " \
|
265
|
+
"is deprecated, it is now set to true as default and setting it to false has no effect.")
|
206
266
|
end
|
207
267
|
|
268
|
+
# Record the start time of the spec suite to measure load time
|
269
|
+
add_setting :start_time
|
270
|
+
|
208
271
|
# @private
|
209
272
|
add_setting :tty
|
210
273
|
# @private
|
211
274
|
add_setting :include_or_extend_modules
|
212
275
|
# @private
|
213
|
-
|
276
|
+
attr_writer :files_to_run
|
214
277
|
# @private
|
215
278
|
add_setting :expecting_with_rspec
|
216
279
|
# @private
|
@@ -218,19 +281,17 @@ module RSpec
|
|
218
281
|
# @private
|
219
282
|
attr_reader :backtrace_formatter, :ordering_manager
|
220
283
|
|
221
|
-
# Alias for rspec-2.x's backtrace_cleaner (now backtrace_formatter)
|
222
|
-
#
|
223
|
-
# TODO: consider deprecating and removing this rather than aliasing in rspec-3?
|
224
|
-
alias backtrace_cleaner backtrace_formatter
|
225
|
-
|
226
284
|
def initialize
|
285
|
+
# rubocop:disable Style/GlobalVars
|
286
|
+
@start_time = $_rspec_core_load_started_at || ::RSpec::Core::Time.now
|
287
|
+
# rubocop:enable Style/GlobalVars
|
227
288
|
@expectation_frameworks = []
|
228
289
|
@include_or_extend_modules = []
|
229
290
|
@mock_framework = nil
|
230
|
-
@
|
231
|
-
@formatters = []
|
291
|
+
@files_or_directories_to_run = []
|
232
292
|
@color = false
|
233
|
-
@pattern = '
|
293
|
+
@pattern = '**{,/*/**}/*_spec.rb'
|
294
|
+
@exclude_pattern = ''
|
234
295
|
@failure_exit_code = 1
|
235
296
|
@spec_files_loaded = false
|
236
297
|
|
@@ -240,6 +301,7 @@ module RSpec
|
|
240
301
|
@deprecation_stream = $stderr
|
241
302
|
@output_stream = $stdout
|
242
303
|
@reporter = nil
|
304
|
+
@reporter_buffer = nil
|
243
305
|
@filter_manager = FilterManager.new
|
244
306
|
@ordering_manager = Ordering::ConfigurationManager.new
|
245
307
|
@preferred_options = {}
|
@@ -252,6 +314,7 @@ module RSpec
|
|
252
314
|
@profile_examples = false
|
253
315
|
@requires = []
|
254
316
|
@libs = []
|
317
|
+
@derived_metadata_blocks = []
|
255
318
|
end
|
256
319
|
|
257
320
|
# @private
|
@@ -260,14 +323,13 @@ module RSpec
|
|
260
323
|
def force(hash)
|
261
324
|
ordering_manager.force(hash)
|
262
325
|
@preferred_options.merge!(hash)
|
263
|
-
self.warnings = value_for :warnings, nil
|
264
326
|
end
|
265
327
|
|
266
328
|
# @private
|
267
329
|
def reset
|
268
330
|
@spec_files_loaded = false
|
269
331
|
@reporter = nil
|
270
|
-
@
|
332
|
+
@formatter_loader = nil
|
271
333
|
end
|
272
334
|
|
273
335
|
# @overload add_setting(name)
|
@@ -307,15 +369,21 @@ module RSpec
|
|
307
369
|
# RSpec.configuration.foo? # returns true if foo returns anything but nil or false
|
308
370
|
def add_setting(name, opts={})
|
309
371
|
default = opts.delete(:default)
|
310
|
-
(class << self; self; end).
|
372
|
+
(class << self; self; end).class_exec do
|
311
373
|
add_setting(name, opts)
|
312
374
|
end
|
313
|
-
|
375
|
+
__send__("#{name}=", default) if default
|
314
376
|
end
|
315
377
|
|
316
378
|
# Returns the configured mock framework adapter module
|
317
379
|
def mock_framework
|
318
|
-
|
380
|
+
if @mock_framework.nil?
|
381
|
+
begin
|
382
|
+
mock_with :rspec
|
383
|
+
rescue LoadError
|
384
|
+
mock_with :nothing
|
385
|
+
end
|
386
|
+
end
|
319
387
|
@mock_framework
|
320
388
|
end
|
321
389
|
|
@@ -339,6 +407,8 @@ module RSpec
|
|
339
407
|
@backtrace_formatter.exclusion_patterns
|
340
408
|
end
|
341
409
|
|
410
|
+
# Set regular expressions used to exclude lines in backtrace
|
411
|
+
# @param patterns [Regexp] set the backtrace exlusion pattern
|
342
412
|
def backtrace_exclusion_patterns=(patterns)
|
343
413
|
@backtrace_formatter.exclusion_patterns = patterns
|
344
414
|
end
|
@@ -355,10 +425,43 @@ module RSpec
|
|
355
425
|
@backtrace_formatter.inclusion_patterns
|
356
426
|
end
|
357
427
|
|
428
|
+
# Set regular expressions used to include lines in backtrace
|
429
|
+
# @attr patterns [Regexp] set backtrace_formatter inclusion_patterns
|
358
430
|
def backtrace_inclusion_patterns=(patterns)
|
359
431
|
@backtrace_formatter.inclusion_patterns = patterns
|
360
432
|
end
|
361
433
|
|
434
|
+
# Adds {#backtrace_exclusion_patterns} that will filter lines from
|
435
|
+
# the named gems from backtraces.
|
436
|
+
#
|
437
|
+
# @param gem_names [Array<String>] Names of the gems to filter
|
438
|
+
#
|
439
|
+
# @example
|
440
|
+
# RSpec.configure do |config|
|
441
|
+
# config.filter_gems_from_backtrace "rack", "rake"
|
442
|
+
# end
|
443
|
+
#
|
444
|
+
# @note The patterns this adds will match the named gems in their common
|
445
|
+
# locations (e.g. system gems, vendored with bundler, installed as a
|
446
|
+
# :git dependency with bundler, etc) but is not guaranteed to work for
|
447
|
+
# all possible gem locations. For example, if you have the gem source
|
448
|
+
# in a directory with a completely unrelated name, and use bundler's
|
449
|
+
# :path option, this will not filter it.
|
450
|
+
def filter_gems_from_backtrace(*gem_names)
|
451
|
+
gem_names.each do |name|
|
452
|
+
@backtrace_formatter.filter_gem(name)
|
453
|
+
end
|
454
|
+
end
|
455
|
+
|
456
|
+
# @private
|
457
|
+
MOCKING_ADAPTERS = {
|
458
|
+
:rspec => :RSpec,
|
459
|
+
:flexmock => :Flexmock,
|
460
|
+
:rr => :RR,
|
461
|
+
:mocha => :Mocha,
|
462
|
+
:nothing => :Null
|
463
|
+
}
|
464
|
+
|
362
465
|
# Sets the mock framework adapter module.
|
363
466
|
#
|
364
467
|
# `framework` can be a Symbol or a Module.
|
@@ -376,8 +479,8 @@ module RSpec
|
|
376
479
|
# - called before each example
|
377
480
|
#
|
378
481
|
# verify_mocks_for_rspec
|
379
|
-
# - called after each example
|
380
|
-
# when expectations fail
|
482
|
+
# - called after each example if the example hasn't yet failed.
|
483
|
+
# Framework should raise an exception when expectations fail
|
381
484
|
#
|
382
485
|
# teardown_mocks_for_rspec
|
383
486
|
# - called after verify_mocks_for_rspec (even if there are errors)
|
@@ -389,24 +492,19 @@ module RSpec
|
|
389
492
|
# mod_config.custom_setting = true
|
390
493
|
# end
|
391
494
|
def mock_with(framework)
|
392
|
-
framework_module =
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
else
|
406
|
-
'rspec/core/mocking/with_absolutely_nothing'
|
407
|
-
end
|
408
|
-
RSpec::Core::MockFrameworkAdapter
|
409
|
-
end
|
495
|
+
framework_module =
|
496
|
+
if framework.is_a?(Module)
|
497
|
+
framework
|
498
|
+
else
|
499
|
+
const_name = MOCKING_ADAPTERS.fetch(framework) do
|
500
|
+
raise ArgumentError,
|
501
|
+
"Unknown mocking framework: #{framework.inspect}. " \
|
502
|
+
"Pass a module or one of #{MOCKING_ADAPTERS.keys.inspect}"
|
503
|
+
end
|
504
|
+
|
505
|
+
RSpec::Support.require_rspec_core "mocking_adapters/#{const_name.to_s.downcase}"
|
506
|
+
RSpec::Core::MockingAdapters.const_get(const_name)
|
507
|
+
end
|
410
508
|
|
411
509
|
new_name, old_name = [framework_module, @mock_framework].map do |mod|
|
412
510
|
mod.respond_to?(:framework_name) ? mod.framework_name : :unnamed
|
@@ -426,7 +524,13 @@ module RSpec
|
|
426
524
|
|
427
525
|
# Returns the configured expectation framework adapter module(s)
|
428
526
|
def expectation_frameworks
|
429
|
-
|
527
|
+
if @expectation_frameworks.empty?
|
528
|
+
begin
|
529
|
+
expect_with :rspec
|
530
|
+
rescue LoadError
|
531
|
+
expect_with Module.new
|
532
|
+
end
|
533
|
+
end
|
430
534
|
@expectation_frameworks
|
431
535
|
end
|
432
536
|
|
@@ -438,16 +542,17 @@ module RSpec
|
|
438
542
|
# Sets the expectation framework module(s) to be included in each example
|
439
543
|
# group.
|
440
544
|
#
|
441
|
-
# `frameworks` can be `:rspec`, `:
|
442
|
-
# combination thereof:
|
545
|
+
# `frameworks` can be `:rspec`, `:test_unit`, `:minitest`, a custom
|
546
|
+
# module, or any combination thereof:
|
443
547
|
#
|
444
548
|
# config.expect_with :rspec
|
445
|
-
# config.expect_with :
|
446
|
-
# config.expect_with :
|
549
|
+
# config.expect_with :test_unit
|
550
|
+
# config.expect_with :minitest
|
551
|
+
# config.expect_with :rspec, :minitest
|
447
552
|
# config.expect_with OtherExpectationFramework
|
448
553
|
#
|
449
|
-
# RSpec will translate `:rspec
|
450
|
-
# modules.
|
554
|
+
# RSpec will translate `:rspec`, `:minitest`, and `:test_unit` into the
|
555
|
+
# appropriate modules.
|
451
556
|
#
|
452
557
|
# ## Configuration
|
453
558
|
#
|
@@ -466,9 +571,12 @@ module RSpec
|
|
466
571
|
require 'rspec/expectations'
|
467
572
|
self.expecting_with_rspec = true
|
468
573
|
::RSpec::Matchers
|
469
|
-
when :
|
470
|
-
require '
|
471
|
-
::
|
574
|
+
when :test_unit
|
575
|
+
require 'rspec/core/test_unit_assertions_adapter'
|
576
|
+
::RSpec::Core::TestUnitAssertionsAdapter
|
577
|
+
when :minitest
|
578
|
+
require 'rspec/core/minitest_assertions_adapter'
|
579
|
+
::RSpec::Core::MinitestAssertionsAdapter
|
472
580
|
else
|
473
581
|
raise ArgumentError, "#{framework.inspect} is not supported"
|
474
582
|
end
|
@@ -487,39 +595,49 @@ module RSpec
|
|
487
595
|
@expectation_frameworks.push(*modules)
|
488
596
|
end
|
489
597
|
|
598
|
+
# Check if full backtrace is enabled
|
599
|
+
# @return [Boolean] is full backtrace enabled
|
490
600
|
def full_backtrace?
|
491
601
|
@backtrace_formatter.full_backtrace?
|
492
602
|
end
|
493
603
|
|
604
|
+
# Toggle full backtrace
|
605
|
+
# @attr true_or_false [Boolean] toggle full backtrace display
|
494
606
|
def full_backtrace=(true_or_false)
|
495
607
|
@backtrace_formatter.full_backtrace = true_or_false
|
496
608
|
end
|
497
609
|
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
610
|
+
# Returns the configuration option for color, but should not
|
611
|
+
# be used to check if color is supported.
|
612
|
+
#
|
613
|
+
# @see color_enabled?
|
614
|
+
# @return [Boolean]
|
615
|
+
def color
|
503
616
|
value_for(:color, @color)
|
504
617
|
end
|
505
618
|
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
@color = true
|
513
|
-
end
|
514
|
-
end
|
619
|
+
# Check if color is enabled for a particular output
|
620
|
+
# @param output [IO] an output stream to use, defaults to the current
|
621
|
+
# `output_stream`
|
622
|
+
# @return [Boolean]
|
623
|
+
def color_enabled?(output=output_stream)
|
624
|
+
output_to_tty?(output) && color
|
515
625
|
end
|
516
626
|
|
517
|
-
#
|
518
|
-
#
|
519
|
-
|
520
|
-
|
521
|
-
|
627
|
+
# Toggle output color
|
628
|
+
# @attr true_or_false [Boolean] toggle color enabled
|
629
|
+
def color=(true_or_false)
|
630
|
+
return unless true_or_false
|
631
|
+
|
632
|
+
if RSpec.world.windows_os? && !ENV['ANSICON']
|
633
|
+
RSpec.warning "You must use ANSICON 1.31 or later (http://adoxa.3eeweb.com/ansicon/) to use colour on Windows"
|
634
|
+
@color = false
|
635
|
+
else
|
636
|
+
@color = true
|
637
|
+
end
|
638
|
+
end
|
522
639
|
|
640
|
+
# @private
|
523
641
|
def libs=(libs)
|
524
642
|
libs.map do |lib|
|
525
643
|
@libs.unshift lib
|
@@ -527,26 +645,13 @@ module RSpec
|
|
527
645
|
end
|
528
646
|
end
|
529
647
|
|
530
|
-
|
531
|
-
|
532
|
-
:replacement => "paths.each {|path| require path}")
|
533
|
-
paths.map {|path| require path}
|
534
|
-
@requires += paths
|
535
|
-
end
|
536
|
-
|
537
|
-
# Run examples defined on `line_numbers` in all files to run.
|
538
|
-
def line_numbers=(line_numbers)
|
539
|
-
filter_run :line_numbers => line_numbers.map{|l| l.to_i}
|
540
|
-
end
|
541
|
-
|
542
|
-
def line_numbers
|
543
|
-
filter.fetch(:line_numbers,[])
|
544
|
-
end
|
545
|
-
|
648
|
+
# Run examples matching on `description` in all files to run.
|
649
|
+
# @param description [String, Regexp] the pattern to filter on
|
546
650
|
def full_description=(description)
|
547
|
-
filter_run :full_description => Regexp.union(*Array(description).map {|d| Regexp.new(d) })
|
651
|
+
filter_run :full_description => Regexp.union(*Array(description).map { |d| Regexp.new(d) })
|
548
652
|
end
|
549
653
|
|
654
|
+
# @return [Array] full description filter
|
550
655
|
def full_description
|
551
656
|
filter.fetch :full_description, nil
|
552
657
|
end
|
@@ -563,27 +668,77 @@ module RSpec
|
|
563
668
|
# and paths to use for output streams, but you should consider that a
|
564
669
|
# private api that may change at any time without notice.
|
565
670
|
def add_formatter(formatter_to_use, *paths)
|
566
|
-
formatter_class =
|
567
|
-
built_in_formatter(formatter_to_use) ||
|
568
|
-
custom_formatter(formatter_to_use) ||
|
569
|
-
(raise ArgumentError, "Formatter '#{formatter_to_use}' unknown - maybe you meant 'documentation' or 'progress'?.")
|
570
|
-
|
571
671
|
paths << output_stream if paths.empty?
|
572
|
-
|
672
|
+
formatter_loader.add formatter_to_use, *paths
|
573
673
|
end
|
574
|
-
|
575
674
|
alias_method :formatter=, :add_formatter
|
576
675
|
|
676
|
+
# The formatter that will be used if no formatter has been set.
|
677
|
+
# Defaults to 'progress'.
|
678
|
+
def default_formatter
|
679
|
+
formatter_loader.default_formatter
|
680
|
+
end
|
681
|
+
|
682
|
+
# Sets a fallback formatter to use if none other has been set.
|
683
|
+
#
|
684
|
+
# @example
|
685
|
+
#
|
686
|
+
# RSpec.configure do |rspec|
|
687
|
+
# rspec.default_formatter = 'doc'
|
688
|
+
# end
|
689
|
+
def default_formatter=(value)
|
690
|
+
formatter_loader.default_formatter = value
|
691
|
+
end
|
692
|
+
|
693
|
+
# Returns a duplicate of the formatters currently loaded in
|
694
|
+
# the `FormatterLoader` for introspection.
|
695
|
+
#
|
696
|
+
# Note as this is a duplicate, any mutations will be disregarded.
|
697
|
+
#
|
698
|
+
# @return [Array] the formatters currently loaded
|
577
699
|
def formatters
|
578
|
-
|
700
|
+
formatter_loader.formatters.dup
|
701
|
+
end
|
702
|
+
|
703
|
+
# @private
|
704
|
+
def formatter_loader
|
705
|
+
@formatter_loader ||= Formatters::Loader.new(Reporter.new(self))
|
706
|
+
end
|
707
|
+
|
708
|
+
# @private
|
709
|
+
#
|
710
|
+
# This buffer is used to capture all messages sent to the reporter during
|
711
|
+
# reporter initialization. It can then replay those messages after the
|
712
|
+
# formatter is correctly initialized. Otherwise, deprecation warnings
|
713
|
+
# during formatter initialization can cause an infinite loop.
|
714
|
+
class DeprecationReporterBuffer
|
715
|
+
def initialize
|
716
|
+
@calls = []
|
717
|
+
end
|
718
|
+
|
719
|
+
def deprecation(*args)
|
720
|
+
@calls << args
|
721
|
+
end
|
722
|
+
|
723
|
+
def play_onto(reporter)
|
724
|
+
@calls.each do |args|
|
725
|
+
reporter.deprecation(*args)
|
726
|
+
end
|
727
|
+
end
|
579
728
|
end
|
580
729
|
|
730
|
+
# @private
|
581
731
|
def reporter
|
582
|
-
@
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
732
|
+
# @reporter_buffer should only ever be set in this method to cover
|
733
|
+
# initialization of @reporter.
|
734
|
+
@reporter_buffer || @reporter ||=
|
735
|
+
begin
|
736
|
+
@reporter_buffer = DeprecationReporterBuffer.new
|
737
|
+
formatter_loader.setup_default output_stream, deprecation_stream
|
738
|
+
@reporter_buffer.play_onto(formatter_loader.reporter)
|
739
|
+
@reporter_buffer = nil
|
740
|
+
formatter_loader.reporter
|
741
|
+
end
|
587
742
|
end
|
588
743
|
|
589
744
|
# @api private
|
@@ -603,60 +758,114 @@ module RSpec
|
|
603
758
|
def files_or_directories_to_run=(*files)
|
604
759
|
files = files.flatten
|
605
760
|
files << default_path if (command == 'rspec' || Runner.running_in_drb?) && default_path && files.empty?
|
606
|
-
|
761
|
+
@files_or_directories_to_run = files
|
762
|
+
@files_to_run = nil
|
763
|
+
end
|
764
|
+
|
765
|
+
# The spec files RSpec will run
|
766
|
+
# @return [Array] specified files about to run
|
767
|
+
def files_to_run
|
768
|
+
@files_to_run ||= get_files_to_run(@files_or_directories_to_run)
|
607
769
|
end
|
608
770
|
|
609
771
|
# Creates a method that delegates to `example` including the submitted
|
610
772
|
# `args`. Used internally to add variants of `example` like `pending`:
|
773
|
+
# @param name [String] example name alias
|
774
|
+
# @param args [Array<Symbol>, Hash] metadata for the generated example
|
775
|
+
#
|
776
|
+
# @note The specific example alias below (`pending`) is already
|
777
|
+
# defined for you.
|
778
|
+
# @note Use with caution. This extends the language used in your
|
779
|
+
# specs, but does not add any additional documentation. We use this
|
780
|
+
# in rspec to define methods like `focus` and `xit`, but we also add
|
781
|
+
# docs for those methods.
|
611
782
|
#
|
612
783
|
# @example
|
613
|
-
#
|
784
|
+
# RSpec.configure do |config|
|
785
|
+
# config.alias_example_to :pending, :pending => true
|
786
|
+
# end
|
614
787
|
#
|
615
|
-
#
|
788
|
+
# # This lets you do this:
|
616
789
|
#
|
617
|
-
#
|
618
|
-
#
|
619
|
-
#
|
620
|
-
# end
|
790
|
+
# describe Thing do
|
791
|
+
# pending "does something" do
|
792
|
+
# thing = Thing.new
|
621
793
|
# end
|
794
|
+
# end
|
622
795
|
#
|
623
|
-
#
|
796
|
+
# # ... which is the equivalent of
|
624
797
|
#
|
625
|
-
#
|
626
|
-
#
|
627
|
-
#
|
628
|
-
# end
|
798
|
+
# describe Thing do
|
799
|
+
# it "does something", :pending => true do
|
800
|
+
# thing = Thing.new
|
629
801
|
# end
|
630
|
-
|
802
|
+
# end
|
803
|
+
def alias_example_to(name, *args)
|
631
804
|
extra_options = Metadata.build_hash_from(args)
|
632
|
-
RSpec::Core::ExampleGroup.
|
805
|
+
RSpec::Core::ExampleGroup.define_example_method(name, extra_options)
|
806
|
+
end
|
807
|
+
|
808
|
+
# Creates a method that defines an example group with the provided
|
809
|
+
# metadata. Can be used to define example group/metadata shortcuts.
|
810
|
+
#
|
811
|
+
# @example
|
812
|
+
# RSpec.configure do |config|
|
813
|
+
# config.alias_example_group_to :describe_model, :type => :model
|
814
|
+
# end
|
815
|
+
#
|
816
|
+
# shared_context_for "model tests", :type => :model do
|
817
|
+
# # define common model test helper methods, `let` declarations, etc
|
818
|
+
# end
|
819
|
+
#
|
820
|
+
# # This lets you do this:
|
821
|
+
#
|
822
|
+
# RSpec.describe_model User do
|
823
|
+
# end
|
824
|
+
#
|
825
|
+
# # ... which is the equivalent of
|
826
|
+
#
|
827
|
+
# RSpec.describe User, :type => :model do
|
828
|
+
# end
|
829
|
+
#
|
830
|
+
# @note The defined aliased will also be added to the top level
|
831
|
+
# (e.g. `main` and from within modules) if
|
832
|
+
# `expose_dsl_globally` is set to true.
|
833
|
+
# @see #alias_example_to
|
834
|
+
# @see #expose_dsl_globally=
|
835
|
+
def alias_example_group_to(new_name, *args)
|
836
|
+
extra_options = Metadata.build_hash_from(args)
|
837
|
+
RSpec::Core::ExampleGroup.define_example_group_method(new_name, extra_options)
|
633
838
|
end
|
634
839
|
|
635
840
|
# Define an alias for it_should_behave_like that allows different
|
636
841
|
# language (like "it_has_behavior" or "it_behaves_like") to be
|
637
842
|
# employed when including shared examples.
|
638
843
|
#
|
639
|
-
#
|
640
|
-
#
|
641
|
-
# alias_it_behaves_like_to(:it_has_behavior, 'has behavior:')
|
844
|
+
# @example
|
845
|
+
# RSpec.configure do |config|
|
846
|
+
# config.alias_it_behaves_like_to(:it_has_behavior, 'has behavior:')
|
847
|
+
# end
|
642
848
|
#
|
643
|
-
# allows the user to include a shared example group like:
|
849
|
+
# # allows the user to include a shared example group like:
|
644
850
|
#
|
645
|
-
#
|
646
|
-
#
|
647
|
-
#
|
648
|
-
# end
|
851
|
+
# describe Entity do
|
852
|
+
# it_has_behavior 'sortability' do
|
853
|
+
# let(:sortable) { Entity.new }
|
649
854
|
# end
|
855
|
+
# end
|
650
856
|
#
|
651
|
-
# which is reported in the output as:
|
857
|
+
# # which is reported in the output as:
|
858
|
+
# # Entity
|
859
|
+
# # has behavior: sortability
|
860
|
+
# # ...sortability examples here
|
652
861
|
#
|
653
|
-
#
|
654
|
-
#
|
655
|
-
#
|
656
|
-
|
657
|
-
|
862
|
+
# @note Use with caution. This extends the language used in your
|
863
|
+
# specs, but does not add any additional documentation. We use this
|
864
|
+
# in rspec to define `it_should_behave_like` (for backward
|
865
|
+
# compatibility), but we also add docs for that method.
|
866
|
+
def alias_it_behaves_like_to(new_name, report_label='')
|
867
|
+
RSpec::Core::ExampleGroup.define_nested_shared_group_method(new_name, report_label)
|
658
868
|
end
|
659
|
-
|
660
869
|
alias_method :alias_it_should_behave_like_to, :alias_it_behaves_like_to
|
661
870
|
|
662
871
|
# Adds key/value pairs to the `inclusion_filter`. If `args`
|
@@ -689,7 +898,8 @@ module RSpec
|
|
689
898
|
#
|
690
899
|
# filter_run_including :foo # same as filter_run_including :foo => true
|
691
900
|
def filter_run_including(*args)
|
692
|
-
|
901
|
+
meta = Metadata.build_hash_from(args, :warn_about_example_group_filtering)
|
902
|
+
filter_manager.include_with_low_priority meta
|
693
903
|
end
|
694
904
|
|
695
905
|
alias_method :filter_run, :filter_run_including
|
@@ -702,7 +912,8 @@ module RSpec
|
|
702
912
|
# This overrides any inclusion filters/tags set on the command line or in
|
703
913
|
# configuration files.
|
704
914
|
def inclusion_filter=(filter)
|
705
|
-
|
915
|
+
meta = Metadata.build_hash_from([filter], :warn_about_example_group_filtering)
|
916
|
+
filter_manager.include_only meta
|
706
917
|
end
|
707
918
|
|
708
919
|
alias_method :filter=, :inclusion_filter=
|
@@ -745,7 +956,8 @@ module RSpec
|
|
745
956
|
#
|
746
957
|
# filter_run_excluding :foo # same as filter_run_excluding :foo => true
|
747
958
|
def filter_run_excluding(*args)
|
748
|
-
|
959
|
+
meta = Metadata.build_hash_from(args, :warn_about_example_group_filtering)
|
960
|
+
filter_manager.exclude_with_low_priority meta
|
749
961
|
end
|
750
962
|
|
751
963
|
# Clears and reassigns the `exclusion_filter`. Set to `nil` if you don't
|
@@ -756,7 +968,8 @@ module RSpec
|
|
756
968
|
# This overrides any exclusion filters/tags set on the command line or in
|
757
969
|
# configuration files.
|
758
970
|
def exclusion_filter=(filter)
|
759
|
-
|
971
|
+
meta = Metadata.build_hash_from([filter], :warn_about_example_group_filtering)
|
972
|
+
filter_manager.exclude_only meta
|
760
973
|
end
|
761
974
|
|
762
975
|
# Returns the `exclusion_filter`. If none has been set, returns an empty
|
@@ -798,7 +1011,8 @@ module RSpec
|
|
798
1011
|
#
|
799
1012
|
# @see #extend
|
800
1013
|
def include(mod, *filters)
|
801
|
-
|
1014
|
+
meta = Metadata.build_hash_from(filters, :warn_about_example_group_filtering)
|
1015
|
+
include_or_extend_modules << [:include, mod, meta]
|
802
1016
|
end
|
803
1017
|
|
804
1018
|
# Tells RSpec to extend example groups with `mod`. Methods defined in
|
@@ -831,7 +1045,8 @@ module RSpec
|
|
831
1045
|
#
|
832
1046
|
# @see #include
|
833
1047
|
def extend(mod, *filters)
|
834
|
-
|
1048
|
+
meta = Metadata.build_hash_from(filters, :warn_about_example_group_filtering)
|
1049
|
+
include_or_extend_modules << [:extend, mod, meta]
|
835
1050
|
end
|
836
1051
|
|
837
1052
|
# @private
|
@@ -841,29 +1056,31 @@ module RSpec
|
|
841
1056
|
def configure_group(group)
|
842
1057
|
include_or_extend_modules.each do |include_or_extend, mod, filters|
|
843
1058
|
next unless filters.empty? || group.any_apply?(filters)
|
844
|
-
|
1059
|
+
__send__("safe_#{include_or_extend}", mod, group)
|
845
1060
|
end
|
846
1061
|
end
|
847
1062
|
|
848
1063
|
# @private
|
849
1064
|
def safe_include(mod, host)
|
850
|
-
host.
|
1065
|
+
host.__send__(:include, mod) unless host < mod
|
851
1066
|
end
|
852
1067
|
|
853
1068
|
# @private
|
854
|
-
def
|
1069
|
+
def requires=(paths)
|
855
1070
|
directories = ['lib', default_path].select { |p| File.directory? p }
|
856
1071
|
RSpec::Core::RubyProject.add_to_load_path(*directories)
|
857
|
-
paths.each {|path| require path}
|
1072
|
+
paths.each { |path| require path }
|
858
1073
|
@requires += paths
|
859
1074
|
end
|
860
1075
|
|
861
1076
|
# @private
|
862
1077
|
if RUBY_VERSION.to_f >= 1.9
|
1078
|
+
# @private
|
863
1079
|
def safe_extend(mod, host)
|
864
|
-
host.extend(mod) unless
|
1080
|
+
host.extend(mod) unless host.singleton_class < mod
|
865
1081
|
end
|
866
1082
|
else
|
1083
|
+
# @private
|
867
1084
|
def safe_extend(mod, host)
|
868
1085
|
host.extend(mod) unless (class << host; self; end).included_modules.include?(mod)
|
869
1086
|
end
|
@@ -871,19 +1088,21 @@ module RSpec
|
|
871
1088
|
|
872
1089
|
# @private
|
873
1090
|
def configure_mock_framework
|
874
|
-
RSpec::Core::ExampleGroup.
|
1091
|
+
RSpec::Core::ExampleGroup.__send__(:include, mock_framework)
|
1092
|
+
conditionally_disable_mocks_monkey_patching
|
875
1093
|
end
|
876
1094
|
|
877
1095
|
# @private
|
878
1096
|
def configure_expectation_framework
|
879
1097
|
expectation_frameworks.each do |framework|
|
880
|
-
RSpec::Core::ExampleGroup.
|
1098
|
+
RSpec::Core::ExampleGroup.__send__(:include, framework)
|
881
1099
|
end
|
1100
|
+
conditionally_disable_expectations_monkey_patching
|
882
1101
|
end
|
883
1102
|
|
884
1103
|
# @private
|
885
1104
|
def load_spec_files
|
886
|
-
files_to_run.uniq.each {|f| load File.expand_path(f) }
|
1105
|
+
files_to_run.uniq.each { |f| load File.expand_path(f) }
|
887
1106
|
@spec_files_loaded = true
|
888
1107
|
end
|
889
1108
|
|
@@ -907,6 +1126,8 @@ module RSpec
|
|
907
1126
|
end
|
908
1127
|
|
909
1128
|
# @private
|
1129
|
+
# @macro [attach] delegate_to_ordering_manager
|
1130
|
+
# @!method $1
|
910
1131
|
def self.delegate_to_ordering_manager(*methods)
|
911
1132
|
methods.each do |method|
|
912
1133
|
define_method method do |*args, &block|
|
@@ -969,11 +1190,12 @@ module RSpec
|
|
969
1190
|
delegate_to_ordering_manager :seed_used?, :ordering_registry
|
970
1191
|
|
971
1192
|
# Set Ruby warnings on or off
|
972
|
-
def warnings=
|
1193
|
+
def warnings=(value)
|
973
1194
|
$VERBOSE = !!value
|
974
1195
|
end
|
975
1196
|
|
976
|
-
|
1197
|
+
# @return [Boolean] Whether or not ruby warnings are enabled.
|
1198
|
+
def warnings?
|
977
1199
|
$VERBOSE
|
978
1200
|
end
|
979
1201
|
|
@@ -1000,7 +1222,7 @@ module RSpec
|
|
1000
1222
|
# end
|
1001
1223
|
# end
|
1002
1224
|
def expose_current_running_example_as(method_name)
|
1003
|
-
ExposeCurrentExample.
|
1225
|
+
ExposeCurrentExample.module_exec do
|
1004
1226
|
extend RSpec::SharedContext
|
1005
1227
|
let(method_name) { |ex| ex }
|
1006
1228
|
end
|
@@ -1008,6 +1230,7 @@ module RSpec
|
|
1008
1230
|
include ExposeCurrentExample
|
1009
1231
|
end
|
1010
1232
|
|
1233
|
+
# @private
|
1011
1234
|
module ExposeCurrentExample; end
|
1012
1235
|
|
1013
1236
|
# Turns deprecation warnings into errors, in order to surface
|
@@ -1024,26 +1247,138 @@ module RSpec
|
|
1024
1247
|
self.deprecation_stream = Formatters::DeprecationFormatter::RaiseErrorStream.new
|
1025
1248
|
end
|
1026
1249
|
|
1250
|
+
# Enables zero monkey patching mode for RSpec. It removes monkey
|
1251
|
+
# patching of the top-level DSL methods (`describe`,
|
1252
|
+
# `shared_examples_for`, etc) onto `main` and `Module`, instead
|
1253
|
+
# requiring you to prefix these methods with `RSpec.`. It enables
|
1254
|
+
# expect-only syntax for rspec-mocks and rspec-expectations. It
|
1255
|
+
# simply disables monkey patching on whatever pieces of rspec
|
1256
|
+
# the user is using.
|
1257
|
+
#
|
1258
|
+
# @note It configures rspec-mocks and rspec-expectations only
|
1259
|
+
# if the user is using those (either explicitly or implicitly
|
1260
|
+
# by not setting `mock_with` or `expect_with` to anything else).
|
1261
|
+
#
|
1262
|
+
# @note If the user uses this options with `mock_with :mocha`
|
1263
|
+
# (or similiar) they will still have monkey patching active
|
1264
|
+
# in their test environment from mocha.
|
1265
|
+
#
|
1266
|
+
# @example
|
1267
|
+
#
|
1268
|
+
# # It disables all monkey patching
|
1269
|
+
# RSpec.configure do |config|
|
1270
|
+
# config.disable_monkey_patching!
|
1271
|
+
# end
|
1272
|
+
#
|
1273
|
+
# # Is an equivalent to
|
1274
|
+
# RSpec.configure do |config|
|
1275
|
+
# config.expose_dsl_globally = false
|
1276
|
+
#
|
1277
|
+
# config.mock_with :rspec do |mocks|
|
1278
|
+
# mocks.syntax = :expect
|
1279
|
+
# mocks.patch_marshal_to_support_partial_doubles = false
|
1280
|
+
# end
|
1281
|
+
#
|
1282
|
+
# config.mock_with :rspec do |expectations|
|
1283
|
+
# expectations.syntax = :expect
|
1284
|
+
# end
|
1285
|
+
# end
|
1286
|
+
def disable_monkey_patching!
|
1287
|
+
self.expose_dsl_globally = false
|
1288
|
+
self.disable_monkey_patching = true
|
1289
|
+
conditionally_disable_mocks_monkey_patching
|
1290
|
+
conditionally_disable_expectations_monkey_patching
|
1291
|
+
end
|
1292
|
+
|
1293
|
+
# @private
|
1294
|
+
attr_accessor :disable_monkey_patching
|
1295
|
+
|
1296
|
+
# Defines a callback that can assign derived metadata values.
|
1297
|
+
#
|
1298
|
+
# @param filters [Array<Symbol>, Hash] metadata filters that determine which example
|
1299
|
+
# or group metadata hashes the callback will be triggered for. If none are given,
|
1300
|
+
# the callback will be run against the metadata hashes of all groups and examples.
|
1301
|
+
# @yieldparam metadata [Hash] original metadata hash from an example or group. Mutate this in
|
1302
|
+
# your block as needed.
|
1303
|
+
#
|
1304
|
+
# @example
|
1305
|
+
# RSpec.configure do |config|
|
1306
|
+
# # Tag all groups and examples in the spec/unit directory with :type => :unit
|
1307
|
+
# config.define_derived_metadata(:file_path => %r{/spec/unit/}) do |metadata|
|
1308
|
+
# metadata[:type] = :unit
|
1309
|
+
# end
|
1310
|
+
# end
|
1311
|
+
def define_derived_metadata(*filters, &block)
|
1312
|
+
meta = Metadata.build_hash_from(filters, :warn_about_example_group_filtering)
|
1313
|
+
@derived_metadata_blocks << [meta, block]
|
1314
|
+
end
|
1315
|
+
|
1316
|
+
# @private
|
1317
|
+
def apply_derived_metadata_to(metadata)
|
1318
|
+
@derived_metadata_blocks.each do |filter, block|
|
1319
|
+
block.call(metadata) if filter.empty? || MetadataFilter.any_apply?(filter, metadata)
|
1320
|
+
end
|
1321
|
+
end
|
1322
|
+
|
1027
1323
|
private
|
1028
1324
|
|
1029
1325
|
def get_files_to_run(paths)
|
1030
|
-
FlatMap.flat_map(paths) do |path|
|
1326
|
+
FlatMap.flat_map(paths_to_check(paths)) do |path|
|
1031
1327
|
path = path.gsub(File::ALT_SEPARATOR, File::SEPARATOR) if File::ALT_SEPARATOR
|
1032
1328
|
File.directory?(path) ? gather_directories(path) : extract_location(path)
|
1033
|
-
end.sort
|
1329
|
+
end.sort.uniq
|
1330
|
+
end
|
1331
|
+
|
1332
|
+
def paths_to_check(paths)
|
1333
|
+
return paths if pattern_might_load_specs_from_vendored_dirs?
|
1334
|
+
paths + ['.']
|
1335
|
+
end
|
1336
|
+
|
1337
|
+
def pattern_might_load_specs_from_vendored_dirs?
|
1338
|
+
pattern.split(File::SEPARATOR).first.include?('**')
|
1034
1339
|
end
|
1035
1340
|
|
1036
1341
|
def gather_directories(path)
|
1342
|
+
include_files = get_matching_files(path, pattern)
|
1343
|
+
exclude_files = get_matching_files(path, exclude_pattern)
|
1344
|
+
(include_files - exclude_files).sort.uniq
|
1345
|
+
end
|
1346
|
+
|
1347
|
+
def get_matching_files(path, pattern)
|
1348
|
+
Dir[file_glob_from(path, pattern)].map { |file| File.expand_path(file) }
|
1349
|
+
end
|
1350
|
+
|
1351
|
+
def file_glob_from(path, pattern)
|
1037
1352
|
stripped = "{#{pattern.gsub(/\s*,\s*/, ',')}}"
|
1038
|
-
|
1039
|
-
|
1353
|
+
return stripped if pattern =~ /^(\.\/)?#{Regexp.escape path}/ || absolute_pattern?(pattern)
|
1354
|
+
File.join(path, stripped)
|
1355
|
+
end
|
1356
|
+
|
1357
|
+
if RSpec::Support::OS.windows?
|
1358
|
+
def absolute_pattern?(pattern)
|
1359
|
+
pattern =~ /\A[A-Z]:\\/ || windows_absolute_network_path?(pattern)
|
1360
|
+
end
|
1361
|
+
|
1362
|
+
def windows_absolute_network_path?(pattern)
|
1363
|
+
return false unless ::File::ALT_SEPARATOR
|
1364
|
+
pattern.start_with?(::File::ALT_SEPARATOR + ::File::ALT_SEPARATOR)
|
1365
|
+
end
|
1366
|
+
else
|
1367
|
+
def absolute_pattern?(pattern)
|
1368
|
+
pattern.start_with?(File::Separator)
|
1369
|
+
end
|
1040
1370
|
end
|
1041
1371
|
|
1042
1372
|
def extract_location(path)
|
1043
|
-
|
1044
|
-
|
1373
|
+
match = /^(.*?)((?:\:\d+)+)$/.match(path)
|
1374
|
+
|
1375
|
+
if match
|
1376
|
+
captures = match.captures
|
1377
|
+
path, lines = captures[0], captures[1][1..-1].split(":").map { |n| n.to_i }
|
1045
1378
|
filter_manager.add_location path, lines
|
1046
1379
|
end
|
1380
|
+
|
1381
|
+
return [] if path == default_path
|
1047
1382
|
path
|
1048
1383
|
end
|
1049
1384
|
|
@@ -1052,78 +1387,54 @@ module RSpec
|
|
1052
1387
|
end
|
1053
1388
|
|
1054
1389
|
def value_for(key, default=nil)
|
1055
|
-
@preferred_options.
|
1390
|
+
@preferred_options.key?(key) ? @preferred_options[key] : default
|
1056
1391
|
end
|
1057
1392
|
|
1058
1393
|
def assert_no_example_groups_defined(config_option)
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
|
1063
|
-
|
1064
|
-
|
1394
|
+
return unless RSpec.world.example_groups.any?
|
1395
|
+
|
1396
|
+
raise MustBeConfiguredBeforeExampleGroupsError.new(
|
1397
|
+
"RSpec's #{config_option} configuration option must be configured before " \
|
1398
|
+
"any example groups are defined, but you have already defined a group."
|
1399
|
+
)
|
1065
1400
|
end
|
1066
1401
|
|
1067
1402
|
def output_to_tty?(output=output_stream)
|
1068
1403
|
tty? || (output.respond_to?(:tty?) && output.tty?)
|
1069
1404
|
end
|
1070
1405
|
|
1071
|
-
def
|
1072
|
-
|
1073
|
-
when 'd', 'doc', 'documentation', 's', 'n', 'spec', 'nested'
|
1074
|
-
require 'rspec/core/formatters/documentation_formatter'
|
1075
|
-
RSpec::Core::Formatters::DocumentationFormatter
|
1076
|
-
when 'h', 'html'
|
1077
|
-
require 'rspec/core/formatters/html_formatter'
|
1078
|
-
RSpec::Core::Formatters::HtmlFormatter
|
1079
|
-
when 'p', 'progress'
|
1080
|
-
require 'rspec/core/formatters/progress_formatter'
|
1081
|
-
RSpec::Core::Formatters::ProgressFormatter
|
1082
|
-
when 'j', 'json'
|
1083
|
-
require 'rspec/core/formatters/json_formatter'
|
1084
|
-
RSpec::Core::Formatters::JsonFormatter
|
1085
|
-
end
|
1086
|
-
end
|
1406
|
+
def conditionally_disable_mocks_monkey_patching
|
1407
|
+
return unless disable_monkey_patching && rspec_mocks_loaded?
|
1087
1408
|
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
elsif string_const?(formatter_ref)
|
1092
|
-
begin
|
1093
|
-
formatter_ref.gsub(/^::/,'').split('::').inject(Object) { |const,string| const.const_get string }
|
1094
|
-
rescue NameError
|
1095
|
-
require( path_for(formatter_ref) ) ? retry : raise
|
1096
|
-
end
|
1409
|
+
RSpec::Mocks.configuration.tap do |config|
|
1410
|
+
config.syntax = :expect
|
1411
|
+
config.patch_marshal_to_support_partial_doubles = false
|
1097
1412
|
end
|
1098
1413
|
end
|
1099
1414
|
|
1100
|
-
def
|
1101
|
-
|
1102
|
-
end
|
1415
|
+
def conditionally_disable_expectations_monkey_patching
|
1416
|
+
return unless disable_monkey_patching && rspec_expectations_loaded?
|
1103
1417
|
|
1104
|
-
|
1105
|
-
underscore_with_fix_for_non_standard_rspec_naming(const_ref)
|
1418
|
+
RSpec::Expectations.configuration.syntax = :expect
|
1106
1419
|
end
|
1107
1420
|
|
1108
|
-
def
|
1109
|
-
|
1421
|
+
def rspec_mocks_loaded?
|
1422
|
+
defined?(RSpec::Mocks.configuration)
|
1110
1423
|
end
|
1111
1424
|
|
1112
|
-
|
1113
|
-
|
1114
|
-
word = camel_cased_word.to_s.dup
|
1115
|
-
word.gsub!(/::/, '/')
|
1116
|
-
word.gsub!(/([A-Z]+)([A-Z][a-z])/,'\1_\2')
|
1117
|
-
word.gsub!(/([a-z\d])([A-Z])/,'\1_\2')
|
1118
|
-
word.tr!("-", "_")
|
1119
|
-
word.downcase!
|
1120
|
-
word
|
1425
|
+
def rspec_expectations_loaded?
|
1426
|
+
defined?(RSpec::Expectations.configuration)
|
1121
1427
|
end
|
1122
1428
|
|
1123
|
-
def
|
1124
|
-
|
1125
|
-
|
1429
|
+
def update_pattern_attr(name, value)
|
1430
|
+
if @spec_files_loaded
|
1431
|
+
RSpec.warning "Configuring `#{name}` to #{value} has no effect since RSpec has already loaded the spec files."
|
1432
|
+
end
|
1433
|
+
|
1434
|
+
instance_variable_set(:"@#{name}", value)
|
1435
|
+
@files_to_run = nil
|
1126
1436
|
end
|
1127
1437
|
end
|
1438
|
+
# rubocop:enable Style/ClassLength
|
1128
1439
|
end
|
1129
1440
|
end
|