mocha 1.5.0 → 1.10.0.alpha
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.rubocop.yml +61 -0
- data/.rubocop_todo.yml +27 -0
- data/CONTRIBUTING.md +4 -9
- data/README.md +46 -97
- data/RELEASE.md +83 -0
- data/Rakefile +44 -38
- data/bin/build-matrix +32 -20
- data/docs/CNAME +1 -0
- data/docs/Mocha.html +254 -0
- data/docs/Mocha/API.html +1129 -0
- data/docs/Mocha/ClassMethods.html +339 -0
- data/docs/Mocha/Configuration.html +1383 -0
- data/docs/Mocha/Expectation.html +2654 -0
- data/docs/Mocha/ExpectationError.html +152 -0
- data/docs/Mocha/ExpectationErrorFactory.html +260 -0
- data/docs/Mocha/Hooks.html +370 -0
- data/docs/Mocha/Integration.html +125 -0
- data/docs/Mocha/Integration/MiniTest.html +123 -0
- data/docs/Mocha/Integration/MiniTest/Adapter.html +164 -0
- data/docs/Mocha/Integration/TestUnit.html +123 -0
- data/docs/Mocha/Integration/TestUnit/Adapter.html +164 -0
- data/docs/Mocha/Mock.html +1237 -0
- data/docs/Mocha/ObjectMethods.html +765 -0
- data/docs/Mocha/ParameterMatchers.html +2961 -0
- data/docs/Mocha/ParameterMatchers/AllOf.html +153 -0
- data/docs/Mocha/ParameterMatchers/AnyOf.html +153 -0
- data/docs/Mocha/ParameterMatchers/AnyParameters.html +153 -0
- data/docs/Mocha/ParameterMatchers/Anything.html +153 -0
- data/docs/Mocha/ParameterMatchers/Base.html +441 -0
- data/docs/Mocha/ParameterMatchers/Equals.html +153 -0
- data/docs/Mocha/ParameterMatchers/EquivalentUri.html +153 -0
- data/docs/Mocha/ParameterMatchers/HasEntries.html +153 -0
- data/docs/Mocha/ParameterMatchers/HasEntry.html +153 -0
- data/docs/Mocha/ParameterMatchers/HasKey.html +153 -0
- data/docs/Mocha/ParameterMatchers/HasValue.html +153 -0
- data/docs/Mocha/ParameterMatchers/Includes.html +153 -0
- data/docs/Mocha/ParameterMatchers/InstanceOf.html +153 -0
- data/docs/Mocha/ParameterMatchers/IsA.html +153 -0
- data/docs/Mocha/ParameterMatchers/KindOf.html +153 -0
- data/docs/Mocha/ParameterMatchers/Not.html +153 -0
- data/docs/Mocha/ParameterMatchers/Optionally.html +153 -0
- data/docs/Mocha/ParameterMatchers/RegexpMatches.html +153 -0
- data/docs/Mocha/ParameterMatchers/RespondsWith.html +153 -0
- data/docs/Mocha/ParameterMatchers/YamlEquivalent.html +153 -0
- data/docs/Mocha/Sequence.html +149 -0
- data/docs/Mocha/StateMachine.html +527 -0
- data/docs/Mocha/StateMachine/State.html +140 -0
- data/docs/Mocha/StateMachine/StatePredicate.html +140 -0
- data/docs/Mocha/StubbingError.html +150 -0
- data/docs/_index.html +519 -0
- data/docs/class_list.html +51 -0
- data/docs/css/common.css +1 -0
- data/docs/css/full_list.css +58 -0
- data/docs/css/style.css +496 -0
- data/docs/file.COPYING.html +81 -0
- data/docs/file.MIT-LICENSE.html +85 -0
- data/docs/file.README.html +429 -0
- data/docs/file.RELEASE.html +942 -0
- data/docs/file_list.html +71 -0
- data/docs/frames.html +17 -0
- data/docs/index.html +429 -0
- data/docs/js/app.js +303 -0
- data/docs/js/full_list.js +216 -0
- data/docs/js/jquery.js +4 -0
- data/docs/method_list.html +635 -0
- data/docs/top-level-namespace.html +118 -0
- data/gemfiles/Gemfile.minitest.5.11.3 +7 -0
- data/init.rb +1 -3
- data/lib/mocha.rb +8 -0
- data/lib/mocha/any_instance_method.rb +11 -59
- data/lib/mocha/api.rb +62 -70
- data/lib/mocha/argument_iterator.rb +4 -8
- data/lib/mocha/backtrace_filter.rb +1 -5
- data/lib/mocha/cardinality.rb +43 -35
- data/lib/mocha/central.rb +7 -15
- data/lib/mocha/change_state_side_effect.rb +0 -4
- data/lib/mocha/class_methods.rb +18 -21
- data/lib/mocha/configuration.rb +305 -18
- data/lib/mocha/debug.rb +3 -2
- data/lib/mocha/deprecation.rb +4 -11
- data/lib/mocha/detection/mini_test.rb +0 -2
- data/lib/mocha/detection/test_unit.rb +3 -5
- data/lib/mocha/error_with_filtered_backtrace.rb +0 -4
- data/lib/mocha/exception_raiser.rb +4 -6
- data/lib/mocha/expectation.rb +62 -67
- data/lib/mocha/expectation_error.rb +1 -1
- data/lib/mocha/expectation_error_factory.rb +0 -1
- data/lib/mocha/expectation_list.rb +7 -11
- data/lib/mocha/hooks.rb +0 -1
- data/lib/mocha/in_state_ordering_constraint.rb +0 -4
- data/lib/mocha/inspect.rb +28 -28
- data/lib/mocha/instance_method.rb +18 -3
- data/lib/mocha/integration.rb +2 -5
- data/lib/mocha/integration/mini_test.rb +7 -0
- data/lib/mocha/integration/mini_test/adapter.rb +2 -4
- data/lib/mocha/integration/mini_test/exception_translation.rb +1 -1
- data/lib/mocha/integration/mini_test/nothing.rb +4 -4
- data/lib/mocha/integration/mini_test/version_13.rb +3 -1
- data/lib/mocha/integration/mini_test/version_140.rb +3 -1
- data/lib/mocha/integration/mini_test/version_141.rb +3 -1
- data/lib/mocha/integration/mini_test/version_142_to_172.rb +3 -1
- data/lib/mocha/integration/mini_test/version_200.rb +3 -1
- data/lib/mocha/integration/mini_test/version_201_to_222.rb +3 -1
- data/lib/mocha/integration/mini_test/version_2110_to_2111.rb +3 -1
- data/lib/mocha/integration/mini_test/version_2112_to_320.rb +3 -1
- data/lib/mocha/integration/mini_test/version_230_to_2101.rb +3 -1
- data/lib/mocha/integration/monkey_patcher.rb +5 -7
- data/lib/mocha/integration/test_unit.rb +7 -0
- data/lib/mocha/integration/test_unit/adapter.rb +5 -6
- data/lib/mocha/integration/test_unit/gem_version_200.rb +4 -2
- data/lib/mocha/integration/test_unit/gem_version_201_to_202.rb +4 -2
- data/lib/mocha/integration/test_unit/gem_version_203_to_220.rb +4 -2
- data/lib/mocha/integration/test_unit/gem_version_230_to_250.rb +4 -2
- data/lib/mocha/integration/test_unit/nothing.rb +4 -4
- data/lib/mocha/integration/test_unit/ruby_version_185_and_below.rb +3 -1
- data/lib/mocha/integration/test_unit/ruby_version_186_and_above.rb +3 -1
- data/lib/mocha/invocation.rb +61 -0
- data/lib/mocha/is_a.rb +0 -2
- data/lib/mocha/logger.rb +0 -4
- data/lib/mocha/macos_version.rb +5 -0
- data/lib/mocha/method_matcher.rb +1 -5
- data/lib/mocha/minitest.rb +7 -2
- data/lib/mocha/mock.rb +57 -47
- data/lib/mocha/mockery.rb +41 -90
- data/lib/mocha/multiple_yields.rb +0 -5
- data/lib/mocha/names.rb +2 -12
- data/lib/mocha/no_yields.rb +1 -7
- data/lib/mocha/not_initialized_error.rb +0 -2
- data/lib/mocha/object_methods.rb +25 -31
- data/lib/mocha/parameter_matchers.rb +1 -3
- data/lib/mocha/parameter_matchers/all_of.rb +2 -8
- data/lib/mocha/parameter_matchers/any_of.rb +2 -8
- data/lib/mocha/parameter_matchers/any_parameters.rb +3 -9
- data/lib/mocha/parameter_matchers/anything.rb +2 -8
- data/lib/mocha/parameter_matchers/base.rb +6 -12
- data/lib/mocha/parameter_matchers/equals.rb +0 -6
- data/lib/mocha/parameter_matchers/equivalent_uri.rb +3 -12
- data/lib/mocha/parameter_matchers/has_entries.rb +2 -6
- data/lib/mocha/parameter_matchers/has_entry.rb +8 -11
- data/lib/mocha/parameter_matchers/has_key.rb +2 -6
- data/lib/mocha/parameter_matchers/has_value.rb +2 -6
- data/lib/mocha/parameter_matchers/includes.rb +4 -6
- data/lib/mocha/parameter_matchers/instance_methods.rb +18 -0
- data/lib/mocha/parameter_matchers/instance_of.rb +0 -6
- data/lib/mocha/parameter_matchers/is_a.rb +2 -6
- data/lib/mocha/parameter_matchers/kind_of.rb +2 -6
- data/lib/mocha/parameter_matchers/not.rb +2 -6
- data/lib/mocha/parameter_matchers/optionally.rb +4 -10
- data/lib/mocha/parameter_matchers/regexp_matches.rb +0 -6
- data/lib/mocha/parameter_matchers/responds_with.rb +3 -8
- data/lib/mocha/parameter_matchers/yaml_equivalent.rb +2 -6
- data/lib/mocha/parameters_matcher.rb +6 -9
- data/lib/mocha/pretty_parameters.rb +0 -4
- data/lib/mocha/raised_exception.rb +11 -0
- data/lib/mocha/receivers.rb +10 -14
- data/lib/mocha/return_values.rb +4 -8
- data/lib/mocha/sequence.rb +4 -9
- data/lib/mocha/setup.rb +5 -0
- data/lib/mocha/single_return_value.rb +2 -5
- data/lib/mocha/single_yield.rb +0 -5
- data/lib/mocha/singleton_class.rb +9 -0
- data/lib/mocha/state_machine.rb +6 -10
- data/lib/mocha/stubbed_method.rb +127 -0
- data/lib/mocha/stubbing_error.rb +0 -2
- data/lib/mocha/test_unit.rb +7 -2
- data/lib/mocha/thrower.rb +4 -6
- data/lib/mocha/thrown_object.rb +12 -0
- data/lib/mocha/version.rb +1 -1
- data/lib/mocha/yield_parameters.rb +3 -7
- data/mocha.gemspec +33 -60
- data/test/acceptance/acceptance_test_helper.rb +6 -4
- data/test/acceptance/bug_18914_test.rb +7 -13
- data/test/acceptance/bug_21465_test.rb +0 -3
- data/test/acceptance/bug_21563_test.rb +0 -3
- data/test/acceptance/display_matching_invocations_alongside_expectations_test.rb +69 -0
- data/test/acceptance/exception_rescue_test.rb +7 -9
- data/test/acceptance/expectations_on_multiple_methods_test.rb +2 -2
- data/test/acceptance/expected_invocation_count_test.rb +27 -30
- data/test/acceptance/failure_messages_test.rb +3 -6
- data/test/acceptance/issue_272_test.rb +1 -3
- data/test/acceptance/issue_65_test.rb +15 -14
- data/test/acceptance/issue_70_test.rb +0 -2
- data/test/acceptance/mocha_example_test.rb +5 -7
- data/test/acceptance/mocha_test_result_test.rb +7 -8
- data/test/acceptance/mock_test.rb +48 -9
- data/test/acceptance/mocked_methods_dispatch_test.rb +0 -3
- data/test/acceptance/multiple_expectations_failure_message_test.rb +16 -18
- data/test/acceptance/optional_parameters_test.rb +0 -3
- data/test/acceptance/parameter_matcher_test.rb +2 -4
- data/test/acceptance/partial_mocks_test.rb +4 -7
- data/test/acceptance/prepend_test.rb +14 -17
- data/test/acceptance/prevent_use_of_mocha_outside_test_test.rb +0 -3
- data/test/acceptance/raise_exception_test.rb +2 -5
- data/test/acceptance/return_value_test.rb +0 -3
- data/test/acceptance/sequence_test.rb +9 -12
- data/test/acceptance/states_test.rb +6 -5
- data/test/acceptance/stub_any_instance_method_defined_on_superclass_test.rb +33 -3
- data/test/acceptance/stub_any_instance_method_test.rb +39 -18
- data/test/acceptance/stub_class_method_defined_on_active_record_association_proxy_test.rb +8 -9
- data/test/acceptance/stub_class_method_defined_on_class_test.rb +2 -2
- data/test/acceptance/stub_class_method_defined_on_module_test.rb +0 -2
- data/test/acceptance/stub_class_method_defined_on_superclass_test.rb +34 -2
- data/test/acceptance/stub_everything_test.rb +1 -4
- data/test/acceptance/stub_instance_method_defined_on_active_record_association_proxy_test.rb +6 -8
- data/test/acceptance/stub_instance_method_defined_on_class_and_aliased_test.rb +0 -2
- data/test/acceptance/stub_instance_method_defined_on_class_test.rb +0 -2
- data/test/acceptance/stub_instance_method_defined_on_kernel_module_test.rb +63 -2
- data/test/acceptance/stub_instance_method_defined_on_module_test.rb +0 -2
- data/test/acceptance/stub_instance_method_defined_on_object_class_test.rb +2 -2
- data/test/acceptance/stub_instance_method_defined_on_singleton_class_test.rb +0 -3
- data/test/acceptance/stub_instance_method_defined_on_superclass_test.rb +0 -2
- data/test/acceptance/stub_method_defined_on_module_and_aliased_test.rb +0 -1
- data/test/acceptance/stub_module_method_test.rb +13 -14
- data/test/acceptance/stub_test.rb +1 -4
- data/test/acceptance/stubba_example_test.rb +6 -15
- data/test/acceptance/stubba_test_result_test.rb +5 -9
- data/test/acceptance/stubbing_error_backtrace_test.rb +6 -7
- data/test/acceptance/stubbing_frozen_object_test.rb +2 -2
- data/test/acceptance/stubbing_method_accepting_block_parameter_test.rb +12 -8
- data/test/acceptance/stubbing_method_unnecessarily_test.rb +5 -7
- data/test/acceptance/stubbing_nil_test.rb +9 -10
- data/test/acceptance/stubbing_non_existent_any_instance_method_test.rb +12 -14
- data/test/acceptance/stubbing_non_existent_class_method_test.rb +14 -14
- data/test/acceptance/stubbing_non_existent_instance_method_test.rb +12 -14
- data/test/acceptance/stubbing_non_public_any_instance_method_test.rb +8 -10
- data/test/acceptance/stubbing_non_public_class_method_test.rb +12 -12
- data/test/acceptance/stubbing_non_public_instance_method_test.rb +10 -12
- data/test/acceptance/stubbing_on_non_mock_object_test.rb +9 -15
- data/test/acceptance/stubbing_same_class_method_on_parent_and_child_classes_test.rb +3 -5
- data/test/acceptance/throw_test.rb +0 -3
- data/test/acceptance/unexpected_invocation_test.rb +2 -4
- data/test/acceptance/unstubbing_test.rb +41 -15
- data/test/deprecation_disabler.rb +0 -1
- data/test/execution_point.rb +2 -4
- data/test/integration/mini_test_test.rb +2 -2
- data/test/integration/shared_tests.rb +27 -23
- data/test/integration/test_unit_test.rb +2 -2
- data/test/method_definer.rb +11 -19
- data/test/mini_test_result.rb +17 -11
- data/test/minitest_result.rb +0 -1
- data/test/simple_counter.rb +0 -2
- data/test/test_helper.rb +13 -5
- data/test/test_runner.rb +4 -4
- data/test/test_unit_result.rb +4 -2
- data/test/unit/any_instance_method_test.rb +74 -35
- data/test/unit/array_inspect_test.rb +2 -4
- data/test/unit/backtrace_filter_test.rb +3 -5
- data/test/unit/cardinality_test.rb +41 -25
- data/test/unit/central_test.rb +26 -28
- data/test/unit/change_state_side_effect_test.rb +0 -4
- data/test/unit/class_methods_test.rb +35 -6
- data/test/unit/configuration_test.rb +13 -14
- data/test/unit/date_time_inspect_test.rb +1 -3
- data/test/unit/exception_raiser_test.rb +10 -7
- data/test/unit/expectation_list_test.rb +13 -13
- data/test/unit/expectation_test.rb +110 -130
- data/test/unit/hash_inspect_test.rb +3 -5
- data/test/unit/hooks_test.rb +9 -4
- data/test/unit/in_state_ordering_constraint_test.rb +0 -4
- data/test/unit/instance_method_test.rb +282 -0
- data/test/unit/method_matcher_test.rb +1 -3
- data/test/unit/mock_test.rb +47 -25
- data/test/unit/mockery_test.rb +32 -33
- data/test/unit/module_methods_test.rb +2 -5
- data/test/unit/multiple_yields_test.rb +0 -2
- data/test/unit/no_yields_test.rb +0 -2
- data/test/unit/object_inspect_test.rb +26 -5
- data/test/unit/object_methods_test.rb +19 -8
- data/test/unit/parameter_matchers/all_of_test.rb +0 -2
- data/test/unit/parameter_matchers/any_of_test.rb +0 -2
- data/test/unit/parameter_matchers/anything_test.rb +2 -4
- data/test/unit/parameter_matchers/equals_test.rb +1 -3
- data/test/unit/parameter_matchers/equivalent_uri_test.rb +0 -10
- data/test/unit/parameter_matchers/has_entries_test.rb +3 -3
- data/test/unit/parameter_matchers/has_entry_test.rb +14 -15
- data/test/unit/parameter_matchers/has_key_test.rb +1 -2
- data/test/unit/parameter_matchers/has_value_test.rb +1 -3
- data/test/unit/parameter_matchers/includes_test.rb +9 -10
- data/test/unit/parameter_matchers/instance_of_test.rb +1 -3
- data/test/unit/parameter_matchers/is_a_test.rb +1 -3
- data/test/unit/parameter_matchers/kind_of_test.rb +1 -3
- data/test/unit/parameter_matchers/not_test.rb +0 -2
- data/test/unit/parameter_matchers/regexp_matches_test.rb +1 -2
- data/test/unit/parameter_matchers/responds_with_test.rb +10 -4
- data/test/unit/parameter_matchers/stub_matcher.rb +0 -4
- data/test/unit/parameter_matchers/yaml_equivalent_test.rb +1 -3
- data/test/unit/parameters_matcher_test.rb +2 -4
- data/test/unit/receivers_test.rb +35 -5
- data/test/unit/return_values_test.rb +28 -25
- data/test/unit/sequence_test.rb +1 -5
- data/test/unit/single_return_value_test.rb +6 -3
- data/test/unit/single_yield_test.rb +0 -2
- data/test/unit/state_machine_test.rb +1 -3
- data/test/unit/string_inspect_test.rb +2 -4
- data/test/unit/thrower_test.rb +7 -4
- data/test/unit/yield_parameters_test.rb +0 -2
- data/yard-templates/default/layout/html/google_analytics.erb +6 -9
- data/yard-templates/default/layout/html/setup.rb +2 -3
- metadata +83 -51
- data/lib/mocha/class_method.rb +0 -119
- data/lib/mocha/mini_test.rb +0 -5
- data/lib/mocha/module_method.rb +0 -16
- data/lib/mocha/module_methods.rb +0 -14
- data/lib/mocha/parameter_matchers/object.rb +0 -17
- data/lib/mocha/standalone.rb +0 -4
- data/lib/mocha/unexpected_invocation.rb +0 -26
- data/lib/mocha_standalone.rb +0 -4
- data/test/acceptance/mock_with_initializer_block_test.rb +0 -58
- data/test/unit/class_method_test.rb +0 -229
data/lib/mocha/cardinality.rb
CHANGED
@@ -1,11 +1,8 @@
|
|
1
1
|
module Mocha
|
2
|
-
|
3
2
|
class Cardinality
|
4
|
-
|
5
3
|
INFINITY = 1 / 0.0
|
6
4
|
|
7
5
|
class << self
|
8
|
-
|
9
6
|
def exactly(count)
|
10
7
|
new(count, count)
|
11
8
|
end
|
@@ -20,58 +17,71 @@ module Mocha
|
|
20
17
|
|
21
18
|
def times(range_or_count)
|
22
19
|
case range_or_count
|
23
|
-
|
24
|
-
|
20
|
+
when Range then new(range_or_count.first, range_or_count.last)
|
21
|
+
else new(range_or_count, range_or_count)
|
25
22
|
end
|
26
23
|
end
|
27
|
-
|
28
24
|
end
|
29
25
|
|
30
26
|
def initialize(required, maximum)
|
31
|
-
@required
|
27
|
+
@required = required
|
28
|
+
@maximum = maximum
|
29
|
+
@invocations = []
|
32
30
|
end
|
33
31
|
|
34
|
-
def
|
35
|
-
|
32
|
+
def <<(invocation)
|
33
|
+
@invocations << invocation
|
36
34
|
end
|
37
35
|
|
38
|
-
def
|
39
|
-
|
36
|
+
def invocations_allowed?
|
37
|
+
@invocations.size < maximum
|
38
|
+
end
|
39
|
+
|
40
|
+
def satisfied?
|
41
|
+
@invocations.size >= required
|
40
42
|
end
|
41
43
|
|
42
44
|
def needs_verifying?
|
43
45
|
!allowed_any_number_of_times?
|
44
46
|
end
|
45
47
|
|
46
|
-
def verified?
|
47
|
-
(
|
48
|
+
def verified?
|
49
|
+
(@invocations.size >= required) && (@invocations.size <= maximum)
|
48
50
|
end
|
49
51
|
|
50
52
|
def allowed_any_number_of_times?
|
51
|
-
required
|
53
|
+
required.zero? && infinite?(maximum)
|
52
54
|
end
|
53
55
|
|
54
|
-
def used?
|
55
|
-
|
56
|
+
def used?
|
57
|
+
@invocations.any? || maximum.zero?
|
56
58
|
end
|
57
59
|
|
58
|
-
|
60
|
+
# rubocop:disable Metrics/CyclomaticComplexity,Metrics/PerceivedComplexity
|
61
|
+
def anticipated_times
|
59
62
|
if allowed_any_number_of_times?
|
60
|
-
|
63
|
+
'allowed any number of times'
|
64
|
+
elsif required.zero? && maximum.zero?
|
65
|
+
"expected #{times(maximum)}"
|
66
|
+
elsif required == maximum
|
67
|
+
"expected exactly #{times(required)}"
|
68
|
+
elsif infinite?(maximum)
|
69
|
+
"expected at least #{times(required)}"
|
70
|
+
elsif required.zero?
|
71
|
+
"expected at most #{times(maximum)}"
|
61
72
|
else
|
62
|
-
|
63
|
-
"expected never"
|
64
|
-
elsif required == maximum
|
65
|
-
"expected exactly #{times(required)}"
|
66
|
-
elsif infinite?(maximum)
|
67
|
-
"expected at least #{times(required)}"
|
68
|
-
elsif required == 0
|
69
|
-
"expected at most #{times(maximum)}"
|
70
|
-
else
|
71
|
-
"expected between #{required} and #{times(maximum)}"
|
72
|
-
end
|
73
|
+
"expected between #{required} and #{times(maximum)}"
|
73
74
|
end
|
74
75
|
end
|
76
|
+
# rubocop:enable Metrics/CyclomaticComplexity,Metrics/PerceivedComplexity
|
77
|
+
|
78
|
+
def invoked_times
|
79
|
+
"invoked #{times(@invocations.size)}"
|
80
|
+
end
|
81
|
+
|
82
|
+
def actual_invocations
|
83
|
+
@invocations.map(&:full_description).join
|
84
|
+
end
|
75
85
|
|
76
86
|
protected
|
77
87
|
|
@@ -79,17 +89,15 @@ module Mocha
|
|
79
89
|
|
80
90
|
def times(number)
|
81
91
|
case number
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
92
|
+
when 0 then 'never'
|
93
|
+
when 1 then 'once'
|
94
|
+
when 2 then 'twice'
|
95
|
+
else "#{number} times"
|
86
96
|
end
|
87
97
|
end
|
88
98
|
|
89
99
|
def infinite?(number)
|
90
100
|
number.respond_to?(:infinite?) && number.infinite?
|
91
101
|
end
|
92
|
-
|
93
102
|
end
|
94
|
-
|
95
103
|
end
|
data/lib/mocha/central.rb
CHANGED
@@ -1,9 +1,6 @@
|
|
1
1
|
module Mocha
|
2
|
-
|
3
2
|
class Central
|
4
|
-
|
5
3
|
class Null < self
|
6
|
-
|
7
4
|
def initialize(&block)
|
8
5
|
super
|
9
6
|
@raise_not_initialized_error = block
|
@@ -16,7 +13,6 @@ module Mocha
|
|
16
13
|
def unstub(*)
|
17
14
|
@raise_not_initialized_error.call
|
18
15
|
end
|
19
|
-
|
20
16
|
end
|
21
17
|
|
22
18
|
attr_accessor :stubba_methods
|
@@ -26,25 +22,21 @@ module Mocha
|
|
26
22
|
end
|
27
23
|
|
28
24
|
def stub(method)
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
end
|
25
|
+
return if stubba_methods.detect { |m| m.matches?(method) }
|
26
|
+
method.stub
|
27
|
+
stubba_methods.push(method)
|
33
28
|
end
|
34
29
|
|
35
30
|
def unstub(method)
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
end
|
31
|
+
return unless (existing = stubba_methods.detect { |m| m.matches?(method) })
|
32
|
+
existing.unstub
|
33
|
+
stubba_methods.delete(existing)
|
40
34
|
end
|
41
35
|
|
42
36
|
def unstub_all
|
43
|
-
while stubba_methods.any?
|
37
|
+
while stubba_methods.any?
|
44
38
|
unstub(stubba_methods.first)
|
45
39
|
end
|
46
40
|
end
|
47
|
-
|
48
41
|
end
|
49
|
-
|
50
42
|
end
|
data/lib/mocha/class_methods.rb
CHANGED
@@ -1,46 +1,36 @@
|
|
1
1
|
require 'mocha/mockery'
|
2
|
-
require 'mocha/class_method'
|
3
2
|
require 'mocha/any_instance_method'
|
4
3
|
|
5
4
|
module Mocha
|
6
|
-
|
7
5
|
# Methods added to all classes to allow mocking and stubbing on real (i.e. non-mock) objects.
|
8
6
|
module ClassMethods
|
9
|
-
|
10
|
-
# @private
|
11
|
-
def stubba_method
|
12
|
-
Mocha::ClassMethod
|
13
|
-
end
|
14
|
-
|
15
7
|
# @private
|
16
8
|
class AnyInstance
|
17
|
-
|
18
9
|
def initialize(klass)
|
19
10
|
@stubba_object = klass
|
20
11
|
end
|
21
12
|
|
22
|
-
def mocha
|
23
|
-
|
13
|
+
def mocha(instantiate = true)
|
14
|
+
if instantiate
|
15
|
+
@mocha ||= Mocha::Mockery.instance.mock_impersonating_any_instance_of(@stubba_object)
|
16
|
+
else
|
17
|
+
defined?(@mocha) ? @mocha : nil
|
18
|
+
end
|
24
19
|
end
|
25
20
|
|
26
21
|
def stubba_method
|
27
22
|
Mocha::AnyInstanceMethod
|
28
23
|
end
|
29
24
|
|
30
|
-
def
|
25
|
+
def stubba_class
|
31
26
|
@stubba_object
|
32
27
|
end
|
33
28
|
|
34
|
-
def
|
35
|
-
|
36
|
-
return true if @stubba_object.public_instance_methods(include_superclass_methods = true).include?(method)
|
37
|
-
return true if @stubba_object.allocate.respond_to?(method.to_sym)
|
38
|
-
end
|
39
|
-
return true if @stubba_object.protected_instance_methods(include_superclass_methods = true).include?(method)
|
40
|
-
return true if @stubba_object.private_instance_methods(include_superclass_methods = true).include?(method)
|
41
|
-
return false
|
29
|
+
def respond_to?(method)
|
30
|
+
@stubba_object.allocate.respond_to?(method.to_sym)
|
42
31
|
end
|
43
32
|
|
33
|
+
attr_reader :stubba_object
|
44
34
|
end
|
45
35
|
|
46
36
|
# @return [Mock] a mock object which will detect calls to any instance of this class.
|
@@ -59,6 +49,13 @@ module Mocha
|
|
59
49
|
@any_instance ||= AnyInstance.new(self)
|
60
50
|
end
|
61
51
|
|
52
|
+
# rubocop:disable Metrics/CyclomaticComplexity
|
53
|
+
def method_visibility(method, include_public_methods = true)
|
54
|
+
(include_public_methods && public_method_defined?(method) && :public) ||
|
55
|
+
(protected_method_defined?(method) && :protected) ||
|
56
|
+
(private_method_defined?(method) && :private)
|
57
|
+
end
|
58
|
+
# rubocop:enable Metrics/CyclomaticComplexity
|
59
|
+
alias_method :method_exists?, :method_visibility
|
62
60
|
end
|
63
|
-
|
64
61
|
end
|
data/lib/mocha/configuration.rb
CHANGED
@@ -1,55 +1,323 @@
|
|
1
1
|
module Mocha
|
2
|
+
# Allows setting of configuration options. See {Configuration} for the available options.
|
3
|
+
#
|
4
|
+
# Typically the configuration is set globally in a +test_helper.rb+ or +spec_helper.rb+ file.
|
5
|
+
#
|
6
|
+
# @see Configuration
|
7
|
+
#
|
8
|
+
# @yieldparam configuration [Configuration] the configuration for modification
|
9
|
+
#
|
10
|
+
# @example Setting multiple configuration options
|
11
|
+
# Mocha.configure do |c|
|
12
|
+
# c.stubbing_method_unnecessarily = :prevent
|
13
|
+
# c.stubbing_method_on_non_mock_object = :warn
|
14
|
+
# c.stubbing_method_on_nil = :allow
|
15
|
+
# end
|
16
|
+
#
|
17
|
+
def self.configure
|
18
|
+
yield configuration
|
19
|
+
end
|
2
20
|
|
3
|
-
#
|
4
|
-
|
21
|
+
# @private
|
22
|
+
def self.configuration
|
23
|
+
Configuration.configuration
|
24
|
+
end
|
5
25
|
|
26
|
+
# This class provides a number of ways to configure the library.
|
27
|
+
#
|
28
|
+
# Typically the configuration is set globally in a +test_helper.rb+ or +spec_helper.rb+ file.
|
29
|
+
#
|
30
|
+
# @example Setting multiple configuration options
|
31
|
+
# Mocha.configure do |c|
|
32
|
+
# c.stubbing_method_unnecessarily = :prevent
|
33
|
+
# c.stubbing_method_on_non_mock_object = :warn
|
34
|
+
# c.stubbing_method_on_nil = :allow
|
35
|
+
# end
|
36
|
+
#
|
37
|
+
class Configuration
|
38
|
+
# @private
|
6
39
|
DEFAULTS = {
|
7
40
|
:stubbing_method_unnecessarily => :allow,
|
8
41
|
:stubbing_method_on_non_mock_object => :allow,
|
9
42
|
:stubbing_non_existent_method => :allow,
|
10
43
|
:stubbing_non_public_method => :allow,
|
11
44
|
:stubbing_method_on_nil => :prevent,
|
12
|
-
|
45
|
+
:display_matching_invocations_on_failure => false
|
46
|
+
}.freeze
|
13
47
|
|
14
|
-
|
48
|
+
attr_reader :options
|
49
|
+
protected :options
|
50
|
+
|
51
|
+
# @private
|
52
|
+
def initialize(options = {})
|
53
|
+
@options = DEFAULTS.merge(options)
|
54
|
+
end
|
55
|
+
|
56
|
+
# @private
|
57
|
+
def initialize_copy(other)
|
58
|
+
@options = other.options.dup
|
59
|
+
end
|
60
|
+
|
61
|
+
# @private
|
62
|
+
def merge(other)
|
63
|
+
self.class.new(@options.merge(other.options))
|
64
|
+
end
|
65
|
+
|
66
|
+
# Configure whether stubbing methods unnecessarily is allowed.
|
67
|
+
#
|
68
|
+
# This is useful for identifying unused stubs. Unused stubs are often accidentally introduced when code is {http://martinfowler.com/bliki/DefinitionOfRefactoring.html refactored}.
|
69
|
+
#
|
70
|
+
# When +value+ is +:allow+, do nothing. This is the default.
|
71
|
+
# When +value+ is +:warn+, display a warning.
|
72
|
+
# When +value+ is +:prevent+, raise a {StubbingError}.
|
73
|
+
#
|
74
|
+
# @param [Symbol] value one of +:allow+, +:warn+, +:prevent+.
|
75
|
+
#
|
76
|
+
# @example Preventing unnecessary stubbing of a method
|
77
|
+
# Mocha.configure do |c|
|
78
|
+
# c.stubbing_method_unnecessarily = :prevent
|
79
|
+
# end
|
80
|
+
#
|
81
|
+
# example = mock('example')
|
82
|
+
# example.stubs(:unused_stub)
|
83
|
+
# # => Mocha::StubbingError: stubbing method unnecessarily:
|
84
|
+
# # => #<Mock:example>.unused_stub(any_parameters)
|
85
|
+
#
|
86
|
+
def stubbing_method_unnecessarily=(value)
|
87
|
+
@options[:stubbing_method_unnecessarily] = value
|
88
|
+
end
|
89
|
+
|
90
|
+
# @private
|
91
|
+
def stubbing_method_unnecessarily
|
92
|
+
@options[:stubbing_method_unnecessarily]
|
93
|
+
end
|
94
|
+
|
95
|
+
# Configure whether stubbing methods on non-mock objects is allowed.
|
96
|
+
#
|
97
|
+
# If you like the idea of {http://www.jmock.org/oopsla2004.pdf mocking roles not objects} and {http://www.mockobjects.com/2007/04/test-smell-mocking-concrete-classes.html you don't like stubbing concrete classes}, this is the setting for you. However, while this restriction makes a lot of sense in Java with its {http://java.sun.com/docs/books/tutorial/java/concepts/interface.html explicit interfaces}, it may be moot in Ruby where roles are probably best represented as Modules.
|
98
|
+
#
|
99
|
+
# When +value+ is +:allow+, do nothing. This is the default.
|
100
|
+
# When +value+ is +:warn+, display a warning.
|
101
|
+
# When +value+ is +:prevent+, raise a {StubbingError}.
|
102
|
+
#
|
103
|
+
# @param [Symbol] value one of +:allow+, +:warn+, +:prevent+.
|
104
|
+
#
|
105
|
+
# @example Preventing stubbing of a method on a non-mock object
|
106
|
+
# Mocha.configure do |c|
|
107
|
+
# c.stubbing_method_on_non_mock_object = :prevent
|
108
|
+
# end
|
109
|
+
#
|
110
|
+
# class Example
|
111
|
+
# def example_method; end
|
112
|
+
# end
|
113
|
+
#
|
114
|
+
# example = Example.new
|
115
|
+
# example.stubs(:example_method)
|
116
|
+
# # => Mocha::StubbingError: stubbing method on non-mock object:
|
117
|
+
# # => #<Example:0x593620>.example_method
|
118
|
+
#
|
119
|
+
def stubbing_method_on_non_mock_object=(value)
|
120
|
+
@options[:stubbing_method_on_non_mock_object] = value
|
121
|
+
end
|
122
|
+
|
123
|
+
# @private
|
124
|
+
def stubbing_method_on_non_mock_object
|
125
|
+
@options[:stubbing_method_on_non_mock_object]
|
126
|
+
end
|
127
|
+
|
128
|
+
# Configure whether stubbing of non-existent methods is allowed.
|
129
|
+
#
|
130
|
+
# This is useful if you want to ensure that methods you're mocking really exist. A common criticism of unit tests with mock objects is that such a test may (incorrectly) pass when an equivalent non-mocking test would (correctly) fail. While you should always have some integration tests, particularly for critical business functionality, this Mocha configuration setting should catch scenarios when mocked methods and real methods have become misaligned.
|
131
|
+
#
|
132
|
+
# When +value+ is +:allow+, do nothing. This is the default.
|
133
|
+
# When +value+ is +:warn+, display a warning.
|
134
|
+
# When +value+ is +:prevent+, raise a {StubbingError}.
|
135
|
+
#
|
136
|
+
# @param [Symbol] value one of +:allow+, +:warn+, +:prevent+.
|
137
|
+
#
|
138
|
+
# @example Preventing stubbing of a non-existent method
|
139
|
+
#
|
140
|
+
# Mocha.configure do |c|
|
141
|
+
# c.stubbing_non_existent_method = :prevent
|
142
|
+
# end
|
143
|
+
#
|
144
|
+
# class Example
|
145
|
+
# end
|
146
|
+
#
|
147
|
+
# example = Example.new
|
148
|
+
# example.stubs(:method_that_doesnt_exist)
|
149
|
+
# # => Mocha::StubbingError: stubbing non-existent method:
|
150
|
+
# # => #<Example:0x593760>.method_that_doesnt_exist
|
151
|
+
#
|
152
|
+
def stubbing_non_existent_method=(value)
|
153
|
+
@options[:stubbing_non_existent_method] = value
|
154
|
+
end
|
155
|
+
|
156
|
+
# @private
|
157
|
+
def stubbing_non_existent_method
|
158
|
+
@options[:stubbing_non_existent_method]
|
159
|
+
end
|
160
|
+
|
161
|
+
# Configure whether stubbing of non-public methods is allowed.
|
162
|
+
#
|
163
|
+
# Many people think that it's good practice only to mock public methods. This is one way to prevent your tests being too tightly coupled to the internal implementation of a class. Such tests tend to be very brittle and not much use when refactoring.
|
164
|
+
#
|
165
|
+
# When +value+ is +:allow+, do nothing. This is the default.
|
166
|
+
# When +value+ is +:warn+, display a warning.
|
167
|
+
# When +value+ is +:prevent+, raise a {StubbingError}.
|
168
|
+
#
|
169
|
+
# @param [Symbol] value one of +:allow+, +:warn+, +:prevent+.
|
170
|
+
#
|
171
|
+
# @example Preventing stubbing of a non-public method
|
172
|
+
# Mocha.configure do |c|
|
173
|
+
# c.stubbing_non_public_method = :prevent
|
174
|
+
# end
|
175
|
+
#
|
176
|
+
# class Example
|
177
|
+
# def internal_method; end
|
178
|
+
# private :internal_method
|
179
|
+
# end
|
180
|
+
#
|
181
|
+
# example = Example.new
|
182
|
+
# example.stubs(:internal_method)
|
183
|
+
# # => Mocha::StubbingError: stubbing non-public method:
|
184
|
+
# # => #<Example:0x593530>.internal_method
|
185
|
+
#
|
186
|
+
def stubbing_non_public_method=(value)
|
187
|
+
@options[:stubbing_non_public_method] = value
|
188
|
+
end
|
189
|
+
|
190
|
+
# @private
|
191
|
+
def stubbing_non_public_method
|
192
|
+
@options[:stubbing_non_public_method]
|
193
|
+
end
|
194
|
+
|
195
|
+
# Configure whether stubbing methods on the +nil+ object is allowed.
|
196
|
+
#
|
197
|
+
# This is usually done accidentally, but there might be rare cases where it is intended.
|
198
|
+
#
|
199
|
+
# This option only works for Ruby < v2.2.0. In later versions of Ruby +nil+ is frozen and so a {StubbingError} will be raised if you attempt to stub a method on +nil+.
|
200
|
+
#
|
201
|
+
# When +value+ is +:allow+, do nothing.
|
202
|
+
# When +value+ is +:warn+, display a warning.
|
203
|
+
# When +value+ is +:prevent+, raise a {StubbingError}. This is the default.
|
204
|
+
#
|
205
|
+
# @param [Symbol] value one of +:allow+, +:warn+, +:prevent+.
|
206
|
+
#
|
207
|
+
def stubbing_method_on_nil=(value)
|
208
|
+
@options[:stubbing_method_on_nil] = value
|
209
|
+
end
|
15
210
|
|
211
|
+
# @private
|
212
|
+
def stubbing_method_on_nil
|
213
|
+
@options[:stubbing_method_on_nil]
|
214
|
+
end
|
215
|
+
|
216
|
+
# Display matching invocations alongside expectations on Mocha-related test failure.
|
217
|
+
#
|
218
|
+
# @param [Boolean] value +true+ to enable display of matching invocations; disabled by default.
|
219
|
+
#
|
220
|
+
# @example Enable display of matching invocations
|
221
|
+
# Mocha.configure do |c|
|
222
|
+
# c.display_matching_invocations_on_failure = true
|
223
|
+
# end
|
224
|
+
#
|
225
|
+
# foo = mock('foo')
|
226
|
+
# foo.expects(:bar)
|
227
|
+
# foo.stubs(:baz).returns('baz').raises(RuntimeError).throws(:tag, 'value')
|
228
|
+
#
|
229
|
+
# foo.baz(1, 2)
|
230
|
+
# assert_raises(RuntimeError) { foo.baz(3, 4) }
|
231
|
+
# assert_throws(:tag) { foo.baz(5, 6) }
|
232
|
+
#
|
233
|
+
# not all expectations were satisfied
|
234
|
+
# unsatisfied expectations:
|
235
|
+
# - expected exactly once, invoked never: #<Mock:foo>.bar
|
236
|
+
# satisfied expectations:
|
237
|
+
# - allowed any number of times, invoked 3 times: #<Mock:foo>.baz(any_parameters)
|
238
|
+
# - #<Mock:foo>.baz(1, 2) # => "baz"
|
239
|
+
# - #<Mock:foo>.baz(3, 4) # => raised RuntimeError
|
240
|
+
# - #<Mock:foo>.baz(5, 6) # => threw (:tag, "value")
|
241
|
+
def display_matching_invocations_on_failure=(value)
|
242
|
+
@options[:display_matching_invocations_on_failure] = value
|
243
|
+
end
|
244
|
+
|
245
|
+
# @private
|
246
|
+
def display_matching_invocations_on_failure?
|
247
|
+
@options[:display_matching_invocations_on_failure]
|
248
|
+
end
|
249
|
+
|
250
|
+
class << self
|
16
251
|
# Allow the specified +action+.
|
17
252
|
#
|
18
253
|
# @param [Symbol] action one of +:stubbing_method_unnecessarily+, +:stubbing_method_on_non_mock_object+, +:stubbing_non_existent_method+, +:stubbing_non_public_method+, +:stubbing_method_on_nil+.
|
19
254
|
# @yield optional block during which the configuration change will be changed before being returned to its original value at the end of the block.
|
255
|
+
# @deprecated If a block is supplied, call {.override} with a +Hash+ containing an entry with the +action+ as the key and +:allow+ as the value. If no block is supplied, call the appropriate +action+ writer method with +value+ set to +:allow+ via {Mocha.configure}. The writer method will be the one of the following corresponding to the +action+:
|
256
|
+
# * {#stubbing_method_unnecessarily=}
|
257
|
+
# * {#stubbing_method_on_non_mock_object=}
|
258
|
+
# * {#stubbing_non_existent_method=}
|
259
|
+
# * {#stubbing_non_public_method=}
|
260
|
+
# * {#stubbing_method_on_nil=}
|
20
261
|
def allow(action, &block)
|
262
|
+
if block_given?
|
263
|
+
Deprecation.warning("Use Mocha::Configuration.override(#{action}: :allow) with the same block")
|
264
|
+
else
|
265
|
+
Deprecation.warning("Use Mocha.configure { |c| c.#{action} = :allow }")
|
266
|
+
end
|
21
267
|
change_config action, :allow, &block
|
22
268
|
end
|
23
269
|
|
24
270
|
# @private
|
25
271
|
def allow?(action)
|
26
|
-
configuration
|
272
|
+
configuration.allow?(action)
|
27
273
|
end
|
28
274
|
|
29
275
|
# Warn if the specified +action+ is attempted.
|
30
276
|
#
|
31
277
|
# @param [Symbol] action one of +:stubbing_method_unnecessarily+, +:stubbing_method_on_non_mock_object+, +:stubbing_non_existent_method+, +:stubbing_non_public_method+, +:stubbing_method_on_nil+.
|
32
278
|
# @yield optional block during which the configuration change will be changed before being returned to its original value at the end of the block.
|
279
|
+
# @deprecated If a block is supplied, call {.override} with a +Hash+ containing an entry with the +action+ as the key and +:warn+ as the value. If no block is supplied, call the appropriate +action+ writer method with +value+ set to +:warn+ via {Mocha.configure}. The writer method will be the one of the following corresponding to the +action+:
|
280
|
+
# * {#stubbing_method_unnecessarily=}
|
281
|
+
# * {#stubbing_method_on_non_mock_object=}
|
282
|
+
# * {#stubbing_non_existent_method=}
|
283
|
+
# * {#stubbing_non_public_method=}
|
284
|
+
# * {#stubbing_method_on_nil=}
|
33
285
|
def warn_when(action, &block)
|
286
|
+
if block_given?
|
287
|
+
Deprecation.warning("Use Mocha::Configuration.override(#{action}: :warn) with the same block")
|
288
|
+
else
|
289
|
+
Deprecation.warning("Use Mocha.configure { |c| c.#{action} = :warn }")
|
290
|
+
end
|
34
291
|
change_config action, :warn, &block
|
35
292
|
end
|
36
293
|
|
37
294
|
# @private
|
38
295
|
def warn_when?(action)
|
39
|
-
configuration
|
296
|
+
configuration.warn_when?(action)
|
40
297
|
end
|
41
298
|
|
42
|
-
# Raise a {StubbingError} if
|
299
|
+
# Raise a {StubbingError} if the specified +action+ is attempted.
|
43
300
|
#
|
44
301
|
# @param [Symbol] action one of +:stubbing_method_unnecessarily+, +:stubbing_method_on_non_mock_object+, +:stubbing_non_existent_method+, +:stubbing_non_public_method+, +:stubbing_method_on_nil+.
|
45
302
|
# @yield optional block during which the configuration change will be changed before being returned to its original value at the end of the block.
|
303
|
+
# @deprecated If a block is supplied, call {.override} with a +Hash+ containing an entry with the +action+ as the key and +:prevent+ as the value. If no block is supplied, call the appropriate +action+ writer method with +value+ set to +:prevent+ via {Mocha.configure}. The writer method will be the one of the following corresponding to the +action+:
|
304
|
+
# * {#stubbing_method_unnecessarily=}
|
305
|
+
# * {#stubbing_method_on_non_mock_object=}
|
306
|
+
# * {#stubbing_non_existent_method=}
|
307
|
+
# * {#stubbing_non_public_method=}
|
308
|
+
# * {#stubbing_method_on_nil=}
|
46
309
|
def prevent(action, &block)
|
310
|
+
if block_given?
|
311
|
+
Deprecation.warning("Use Mocha::Configuration.override(#{action}: :prevent) with the same block")
|
312
|
+
else
|
313
|
+
Deprecation.warning("Use Mocha.configure { |c| c.#{action} = :prevent }")
|
314
|
+
end
|
47
315
|
change_config action, :prevent, &block
|
48
316
|
end
|
49
317
|
|
50
318
|
# @private
|
51
319
|
def prevent?(action)
|
52
|
-
configuration
|
320
|
+
configuration.prevent?(action)
|
53
321
|
end
|
54
322
|
|
55
323
|
# @private
|
@@ -57,33 +325,52 @@ module Mocha
|
|
57
325
|
@configuration = nil
|
58
326
|
end
|
59
327
|
|
60
|
-
|
328
|
+
# Temporarily modify {Configuration} options.
|
329
|
+
#
|
330
|
+
# The supplied +temporary_options+ will override the current configuration for the duration of the supplied block.
|
331
|
+
# The configuration will be returned to its original state when the block returns.
|
332
|
+
#
|
333
|
+
# @param [Hash] temporary_options the configuration options to apply for the duration of the block.
|
334
|
+
# @yield block during which the configuration change will be in force.
|
335
|
+
#
|
336
|
+
# @example Temporarily allow stubbing of +nil+
|
337
|
+
# Mocha::Configuration.override(stubbing_method_on_nil: :allow) do
|
338
|
+
# nil.stubs(:foo)
|
339
|
+
# end
|
340
|
+
def override(temporary_options)
|
341
|
+
original_configuration = configuration
|
342
|
+
@configuration = configuration.merge(new(temporary_options))
|
343
|
+
yield
|
344
|
+
ensure
|
345
|
+
@configuration = original_configuration
|
346
|
+
end
|
61
347
|
|
62
348
|
# @private
|
63
349
|
def configuration
|
64
|
-
@configuration ||=
|
350
|
+
@configuration ||= new
|
65
351
|
end
|
66
352
|
|
353
|
+
private
|
354
|
+
|
67
355
|
# @private
|
68
356
|
def change_config(action, new_value, &block)
|
69
357
|
if block_given?
|
70
358
|
temporarily_change_config action, new_value, &block
|
71
359
|
else
|
72
|
-
configuration
|
360
|
+
configuration.send("#{action}=".to_sym, new_value)
|
73
361
|
end
|
74
362
|
end
|
75
363
|
|
76
364
|
# @private
|
77
|
-
def temporarily_change_config(action, new_value
|
78
|
-
|
79
|
-
|
365
|
+
def temporarily_change_config(action, new_value)
|
366
|
+
original_configuration = configuration
|
367
|
+
new_configuration = configuration.dup
|
368
|
+
new_configuration.send("#{action}=".to_sym, new_value)
|
369
|
+
@configuration = new_configuration
|
80
370
|
yield
|
81
371
|
ensure
|
82
|
-
configuration
|
372
|
+
@configuration = original_configuration
|
83
373
|
end
|
84
|
-
|
85
374
|
end
|
86
|
-
|
87
375
|
end
|
88
|
-
|
89
376
|
end
|