mocha 1.0.0.alpha → 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 +7 -0
- data/README.md +136 -42
- data/RELEASE.md +166 -16
- data/Rakefile +52 -36
- data/bin/build-matrix +32 -21
- 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/gemfiles/Gemfile.test-unit.latest +5 -1
- data/init.rb +1 -3
- data/lib/mocha.rb +8 -0
- data/lib/mocha/any_instance_method.rb +12 -50
- data/lib/mocha/api.rb +63 -65
- 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 +21 -12
- data/lib/mocha/change_state_side_effect.rb +0 -4
- data/lib/mocha/class_methods.rb +18 -20
- data/lib/mocha/configuration.rb +305 -18
- data/lib/mocha/debug.rb +3 -2
- data/lib/mocha/deprecation.rb +6 -10
- 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 +13 -0
- 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 +1 -3
- data/lib/mocha/in_state_ordering_constraint.rb +0 -4
- data/lib/mocha/inspect.rb +28 -38
- data/lib/mocha/instance_method.rb +15 -8
- 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 +4 -1
- data/lib/mocha/integration/mini_test/version_140.rb +4 -1
- data/lib/mocha/integration/mini_test/version_141.rb +4 -1
- data/lib/mocha/integration/mini_test/version_142_to_172.rb +4 -1
- data/lib/mocha/integration/mini_test/version_200.rb +4 -1
- data/lib/mocha/integration/mini_test/version_201_to_222.rb +4 -1
- data/lib/mocha/integration/mini_test/version_2110_to_2111.rb +4 -1
- data/lib/mocha/integration/mini_test/version_2112_to_320.rb +4 -1
- data/lib/mocha/integration/mini_test/version_230_to_2101.rb +4 -1
- data/lib/mocha/integration/monkey_patcher.rb +8 -2
- 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 +5 -2
- data/lib/mocha/integration/test_unit/gem_version_201_to_202.rb +5 -2
- data/lib/mocha/integration/test_unit/gem_version_203_to_220.rb +5 -2
- data/lib/mocha/integration/test_unit/gem_version_230_to_250.rb +5 -2
- data/lib/mocha/integration/test_unit/nothing.rb +4 -4
- data/lib/mocha/integration/test_unit/ruby_version_185_and_below.rb +4 -1
- data/lib/mocha/integration/test_unit/ruby_version_186_and_above.rb +4 -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 +8 -0
- data/lib/mocha/mock.rb +70 -44
- data/lib/mocha/mockery.rb +78 -91
- 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 +7 -0
- data/lib/mocha/object_methods.rb +27 -33
- data/lib/mocha/parameter_matchers.rb +2 -4
- 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 +1 -7
- data/lib/mocha/parameter_matchers/{query_string.rb → equivalent_uri.rb} +15 -15
- 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 +50 -8
- 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/ruby_version.rb +4 -0
- 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 +2 -13
- 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 +35 -39
- data/test/acceptance/acceptance_test_helper.rb +6 -6
- 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 +50 -0
- 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 +6 -44
- data/test/acceptance/partial_mocks_test.rb +4 -7
- data/test/acceptance/prepend_test.rb +86 -0
- data/test/acceptance/prevent_use_of_mocha_outside_test_test.rb +76 -0
- 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 +119 -21
- 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 +5 -5
- 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 +3 -5
- 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 +3 -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 +38 -0
- data/test/acceptance/stub_module_method_test.rb +58 -21
- 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 +11 -6
- 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 +36 -35
- data/test/acceptance/stubbing_non_existent_any_instance_method_test.rb +23 -12
- 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 +17 -11
- 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/assertions.rb +6 -4
- data/test/deprecation_disabler.rb +1 -1
- data/test/execution_point.rb +7 -7
- 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 +2 -3
- data/test/simple_counter.rb +0 -2
- data/test/test_helper.rb +13 -5
- data/test/test_runner.rb +5 -5
- data/test/test_unit_result.rb +4 -2
- data/test/unit/any_instance_method_test.rb +74 -31
- 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 +111 -131
- data/test/unit/hash_inspect_test.rb +3 -5
- data/test/unit/hooks_test.rb +14 -8
- 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 +56 -25
- data/test/unit/mockery_test.rb +49 -29
- 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 +27 -5
- data/test/unit/object_methods_test.rb +25 -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 +41 -0
- data/test/unit/parameter_matchers/has_entries_test.rb +3 -3
- data/test/unit/parameter_matchers/has_entry_test.rb +16 -17
- data/test/unit/parameter_matchers/has_key_test.rb +1 -2
- data/test/unit/parameter_matchers/has_value_test.rb +2 -4
- data/test/unit/parameter_matchers/includes_test.rb +50 -3
- 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 +3 -5
- 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 +99 -42
- data/lib/mocha/class_method.rb +0 -106
- data/lib/mocha/mini_test.rb +0 -3
- 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 -51
- data/test/unit/class_method_test.rb +0 -223
@@ -1,8 +1,7 @@
|
|
1
1
|
require File.expand_path('../acceptance_test_helper', __FILE__)
|
2
|
-
require 'mocha/
|
2
|
+
require 'mocha/configuration'
|
3
3
|
|
4
4
|
class StubbingMethodUnnecessarilyTest < Mocha::TestCase
|
5
|
-
|
6
5
|
include AcceptanceTest
|
7
6
|
|
8
7
|
def setup
|
@@ -14,7 +13,7 @@ class StubbingMethodUnnecessarilyTest < Mocha::TestCase
|
|
14
13
|
end
|
15
14
|
|
16
15
|
def test_should_allow_stubbing_method_unnecessarily
|
17
|
-
Mocha
|
16
|
+
Mocha.configure { |c| c.stubbing_method_unnecessarily = :allow }
|
18
17
|
test_result = run_as_test do
|
19
18
|
mock = mock('mock')
|
20
19
|
mock.stubs(:public_method)
|
@@ -24,7 +23,7 @@ class StubbingMethodUnnecessarilyTest < Mocha::TestCase
|
|
24
23
|
end
|
25
24
|
|
26
25
|
def test_should_warn_when_stubbing_method_unnecessarily
|
27
|
-
Mocha
|
26
|
+
Mocha.configure { |c| c.stubbing_method_unnecessarily = :warn }
|
28
27
|
test_result = run_as_test do
|
29
28
|
mock = mock('mock')
|
30
29
|
mock.stubs(:public_method)
|
@@ -34,7 +33,7 @@ class StubbingMethodUnnecessarilyTest < Mocha::TestCase
|
|
34
33
|
end
|
35
34
|
|
36
35
|
def test_should_prevent_stubbing_method_unnecessarily
|
37
|
-
Mocha
|
36
|
+
Mocha.configure { |c| c.stubbing_method_unnecessarily = :prevent }
|
38
37
|
test_result = run_as_test do
|
39
38
|
mock = mock('mock')
|
40
39
|
mock.stubs(:public_method)
|
@@ -53,7 +52,7 @@ class StubbingMethodUnnecessarilyTest < Mocha::TestCase
|
|
53
52
|
end
|
54
53
|
|
55
54
|
def test_should_allow_stubbing_method_when_stubbed_method_is_invoked
|
56
|
-
Mocha
|
55
|
+
Mocha.configure { |c| c.stubbing_method_unnecessarily = :prevent }
|
57
56
|
test_result = run_as_test do
|
58
57
|
mock = mock('mock')
|
59
58
|
mock.stubs(:public_method)
|
@@ -61,5 +60,4 @@ class StubbingMethodUnnecessarilyTest < Mocha::TestCase
|
|
61
60
|
end
|
62
61
|
assert_passed(test_result)
|
63
62
|
end
|
64
|
-
|
65
63
|
end
|
@@ -1,8 +1,7 @@
|
|
1
1
|
require File.expand_path('../acceptance_test_helper', __FILE__)
|
2
|
-
require 'mocha/
|
2
|
+
require 'mocha/configuration'
|
3
3
|
|
4
4
|
class StubbingNilTest < Mocha::TestCase
|
5
|
-
|
6
5
|
include AcceptanceTest
|
7
6
|
|
8
7
|
def setup
|
@@ -13,47 +12,49 @@ class StubbingNilTest < Mocha::TestCase
|
|
13
12
|
teardown_acceptance_test
|
14
13
|
end
|
15
14
|
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
15
|
+
if RUBY_VERSION < '2.2.0'
|
16
|
+
def test_should_allow_stubbing_method_on_nil
|
17
|
+
Mocha.configure { |c| c.stubbing_method_on_nil = :allow }
|
18
|
+
test_result = run_as_test do
|
19
|
+
nil.stubs(:stubbed_method)
|
20
|
+
end
|
21
|
+
assert_passed(test_result)
|
22
|
+
assert !@logger.warnings.include?('stubbing method on nil: nil.stubbed_method')
|
20
23
|
end
|
21
|
-
assert_passed(test_result)
|
22
|
-
assert !@logger.warnings.include?("stubbing method on nil: nil.stubbed_method")
|
23
|
-
end
|
24
24
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
25
|
+
def test_should_warn_on_stubbing_method_on_nil
|
26
|
+
Mocha.configure { |c| c.stubbing_method_on_nil = :warn }
|
27
|
+
test_result = run_as_test do
|
28
|
+
nil.stubs(:stubbed_method)
|
29
|
+
end
|
30
|
+
assert_passed(test_result)
|
31
|
+
assert @logger.warnings.include?('stubbing method on nil: nil.stubbed_method')
|
29
32
|
end
|
30
|
-
assert_passed(test_result)
|
31
|
-
assert @logger.warnings.include?("stubbing method on nil: nil.stubbed_method")
|
32
|
-
end
|
33
33
|
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
34
|
+
def test_should_prevent_stubbing_method_on_nil
|
35
|
+
Mocha.configure { |c| c.stubbing_method_on_nil = :prevent }
|
36
|
+
test_result = run_as_test do
|
37
|
+
nil.stubs(:stubbed_method)
|
38
|
+
end
|
39
|
+
assert_failed(test_result)
|
40
|
+
assert test_result.error_messages.include?('Mocha::StubbingError: stubbing method on nil: nil.stubbed_method')
|
38
41
|
end
|
39
|
-
assert_failed(test_result)
|
40
|
-
assert test_result.error_messages.include?("Mocha::StubbingError: stubbing method on nil: nil.stubbed_method")
|
41
|
-
end
|
42
42
|
|
43
|
-
|
44
|
-
|
45
|
-
|
43
|
+
def test_should_default_to_prevent_stubbing_method_on_non_mock_object
|
44
|
+
test_result = run_as_test do
|
45
|
+
nil.stubs(:stubbed_method)
|
46
|
+
end
|
47
|
+
assert_failed(test_result)
|
48
|
+
assert test_result.error_messages.include?('Mocha::StubbingError: stubbing method on nil: nil.stubbed_method')
|
46
49
|
end
|
47
|
-
assert_failed(test_result)
|
48
|
-
assert test_result.error_messages.include?("Mocha::StubbingError: stubbing method on nil: nil.stubbed_method")
|
49
|
-
end
|
50
50
|
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
51
|
+
def test_should_allow_stubbing_method_on_non_nil_object
|
52
|
+
Mocha.configure { |c| c.stubbing_method_on_nil = :prevent }
|
53
|
+
object = Object.new
|
54
|
+
test_result = run_as_test do
|
55
|
+
object.stubs(:stubbed_method)
|
56
|
+
end
|
57
|
+
assert_passed(test_result)
|
56
58
|
end
|
57
|
-
assert_passed(test_result)
|
58
59
|
end
|
59
60
|
end
|
@@ -1,8 +1,7 @@
|
|
1
1
|
require File.expand_path('../acceptance_test_helper', __FILE__)
|
2
|
-
require 'mocha/
|
2
|
+
require 'mocha/configuration'
|
3
3
|
|
4
4
|
class StubbingNonExistentAnyInstanceMethodTest < Mocha::TestCase
|
5
|
-
|
6
5
|
include AcceptanceTest
|
7
6
|
|
8
7
|
def setup
|
@@ -14,7 +13,7 @@ class StubbingNonExistentAnyInstanceMethodTest < Mocha::TestCase
|
|
14
13
|
end
|
15
14
|
|
16
15
|
def test_should_allow_stubbing_non_existent_any_instance_method
|
17
|
-
Mocha
|
16
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :allow }
|
18
17
|
klass = Class.new
|
19
18
|
test_result = run_as_test do
|
20
19
|
klass.any_instance.stubs(:non_existent_method)
|
@@ -24,7 +23,7 @@ class StubbingNonExistentAnyInstanceMethodTest < Mocha::TestCase
|
|
24
23
|
end
|
25
24
|
|
26
25
|
def test_should_warn_when_stubbing_non_existent_any_instance_method
|
27
|
-
Mocha
|
26
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :warn }
|
28
27
|
klass = Class.new
|
29
28
|
test_result = run_as_test do
|
30
29
|
klass.any_instance.stubs(:non_existent_method)
|
@@ -34,7 +33,7 @@ class StubbingNonExistentAnyInstanceMethodTest < Mocha::TestCase
|
|
34
33
|
end
|
35
34
|
|
36
35
|
def test_should_prevent_stubbing_non_existent_any_instance_method
|
37
|
-
Mocha
|
36
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
38
37
|
klass = Class.new
|
39
38
|
test_result = run_as_test do
|
40
39
|
klass.any_instance.stubs(:non_existent_method)
|
@@ -53,7 +52,7 @@ class StubbingNonExistentAnyInstanceMethodTest < Mocha::TestCase
|
|
53
52
|
end
|
54
53
|
|
55
54
|
def test_should_allow_stubbing_existing_public_any_instance_method
|
56
|
-
Mocha
|
55
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
57
56
|
klass = Class.new do
|
58
57
|
def existing_public_method; end
|
59
58
|
public :existing_public_method
|
@@ -64,8 +63,21 @@ class StubbingNonExistentAnyInstanceMethodTest < Mocha::TestCase
|
|
64
63
|
assert_passed(test_result)
|
65
64
|
end
|
66
65
|
|
66
|
+
def test_should_allow_stubbing_method_to_which_any_instance_responds
|
67
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
68
|
+
klass = Class.new do
|
69
|
+
def respond_to?(method, _include_private = false)
|
70
|
+
(method == :method_to_which_instance_responds)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
test_result = run_as_test do
|
74
|
+
klass.any_instance.stubs(:method_to_which_instance_responds)
|
75
|
+
end
|
76
|
+
assert_passed(test_result)
|
77
|
+
end
|
78
|
+
|
67
79
|
def test_should_allow_stubbing_existing_protected_any_instance_method
|
68
|
-
Mocha
|
80
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
69
81
|
klass = Class.new do
|
70
82
|
def existing_protected_method; end
|
71
83
|
protected :existing_protected_method
|
@@ -77,7 +89,7 @@ class StubbingNonExistentAnyInstanceMethodTest < Mocha::TestCase
|
|
77
89
|
end
|
78
90
|
|
79
91
|
def test_should_allow_stubbing_existing_private_any_instance_method
|
80
|
-
Mocha
|
92
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
81
93
|
klass = Class.new do
|
82
94
|
def existing_private_method; end
|
83
95
|
private :existing_private_method
|
@@ -89,7 +101,7 @@ class StubbingNonExistentAnyInstanceMethodTest < Mocha::TestCase
|
|
89
101
|
end
|
90
102
|
|
91
103
|
def test_should_allow_stubbing_existing_public_any_instance_superclass_method
|
92
|
-
Mocha
|
104
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
93
105
|
superklass = Class.new do
|
94
106
|
def existing_public_method; end
|
95
107
|
public :existing_public_method
|
@@ -102,7 +114,7 @@ class StubbingNonExistentAnyInstanceMethodTest < Mocha::TestCase
|
|
102
114
|
end
|
103
115
|
|
104
116
|
def test_should_allow_stubbing_existing_protected_any_instance_superclass_method
|
105
|
-
Mocha
|
117
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
106
118
|
superklass = Class.new do
|
107
119
|
def existing_protected_method; end
|
108
120
|
protected :existing_protected_method
|
@@ -115,7 +127,7 @@ class StubbingNonExistentAnyInstanceMethodTest < Mocha::TestCase
|
|
115
127
|
end
|
116
128
|
|
117
129
|
def test_should_allow_stubbing_existing_private_any_instance_superclass_method
|
118
|
-
Mocha
|
130
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
119
131
|
superklass = Class.new do
|
120
132
|
def existing_private_method; end
|
121
133
|
private :existing_private_method
|
@@ -126,5 +138,4 @@ class StubbingNonExistentAnyInstanceMethodTest < Mocha::TestCase
|
|
126
138
|
end
|
127
139
|
assert_passed(test_result)
|
128
140
|
end
|
129
|
-
|
130
141
|
end
|
@@ -1,8 +1,7 @@
|
|
1
1
|
require File.expand_path('../acceptance_test_helper', __FILE__)
|
2
|
-
require 'mocha/
|
2
|
+
require 'mocha/configuration'
|
3
3
|
|
4
4
|
class StubbingNonExistentClassMethodTest < Mocha::TestCase
|
5
|
-
|
6
5
|
include AcceptanceTest
|
7
6
|
|
8
7
|
def setup
|
@@ -14,7 +13,7 @@ class StubbingNonExistentClassMethodTest < Mocha::TestCase
|
|
14
13
|
end
|
15
14
|
|
16
15
|
def test_should_allow_stubbing_non_existent_class_method
|
17
|
-
Mocha
|
16
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :allow }
|
18
17
|
klass = Class.new
|
19
18
|
test_result = run_as_test do
|
20
19
|
klass.stubs(:non_existent_method)
|
@@ -24,7 +23,7 @@ class StubbingNonExistentClassMethodTest < Mocha::TestCase
|
|
24
23
|
end
|
25
24
|
|
26
25
|
def test_should_warn_when_stubbing_non_existent_class_method
|
27
|
-
Mocha
|
26
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :warn }
|
28
27
|
klass = Class.new
|
29
28
|
test_result = run_as_test do
|
30
29
|
klass.stubs(:non_existent_method)
|
@@ -34,7 +33,7 @@ class StubbingNonExistentClassMethodTest < Mocha::TestCase
|
|
34
33
|
end
|
35
34
|
|
36
35
|
def test_should_prevent_stubbing_non_existent_class_method
|
37
|
-
Mocha
|
36
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
38
37
|
klass = Class.new
|
39
38
|
test_result = run_as_test do
|
40
39
|
klass.stubs(:non_existent_method)
|
@@ -52,8 +51,9 @@ class StubbingNonExistentClassMethodTest < Mocha::TestCase
|
|
52
51
|
assert_passed(test_result)
|
53
52
|
end
|
54
53
|
|
54
|
+
# rubocop:disable Lint/DuplicateMethods
|
55
55
|
def test_should_allow_stubbing_existing_public_class_method
|
56
|
-
Mocha
|
56
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
57
57
|
klass = Class.new do
|
58
58
|
class << self
|
59
59
|
def existing_public_method; end
|
@@ -67,10 +67,10 @@ class StubbingNonExistentClassMethodTest < Mocha::TestCase
|
|
67
67
|
end
|
68
68
|
|
69
69
|
def test_should_allow_stubbing_method_to_which_class_responds
|
70
|
-
Mocha
|
70
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
71
71
|
klass = Class.new do
|
72
72
|
class << self
|
73
|
-
def respond_to?(method,
|
73
|
+
def respond_to?(method, _include_private = false)
|
74
74
|
(method == :method_to_which_class_responds)
|
75
75
|
end
|
76
76
|
end
|
@@ -82,7 +82,7 @@ class StubbingNonExistentClassMethodTest < Mocha::TestCase
|
|
82
82
|
end
|
83
83
|
|
84
84
|
def test_should_allow_stubbing_existing_protected_class_method
|
85
|
-
Mocha
|
85
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
86
86
|
klass = Class.new do
|
87
87
|
class << self
|
88
88
|
def existing_protected_method; end
|
@@ -96,7 +96,7 @@ class StubbingNonExistentClassMethodTest < Mocha::TestCase
|
|
96
96
|
end
|
97
97
|
|
98
98
|
def test_should_allow_stubbing_existing_private_class_method
|
99
|
-
Mocha
|
99
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
100
100
|
klass = Class.new do
|
101
101
|
class << self
|
102
102
|
def existing_private_method; end
|
@@ -110,7 +110,7 @@ class StubbingNonExistentClassMethodTest < Mocha::TestCase
|
|
110
110
|
end
|
111
111
|
|
112
112
|
def test_should_allow_stubbing_existing_public_superclass_method
|
113
|
-
Mocha
|
113
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
114
114
|
superklass = Class.new do
|
115
115
|
class << self
|
116
116
|
def existing_public_method; end
|
@@ -125,7 +125,7 @@ class StubbingNonExistentClassMethodTest < Mocha::TestCase
|
|
125
125
|
end
|
126
126
|
|
127
127
|
def test_should_allow_stubbing_existing_protected_superclass_method
|
128
|
-
Mocha
|
128
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
129
129
|
superklass = Class.new do
|
130
130
|
class << self
|
131
131
|
def existing_protected_method; end
|
@@ -140,7 +140,7 @@ class StubbingNonExistentClassMethodTest < Mocha::TestCase
|
|
140
140
|
end
|
141
141
|
|
142
142
|
def test_should_allow_stubbing_existing_private_superclass_method
|
143
|
-
Mocha
|
143
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
144
144
|
superklass = Class.new do
|
145
145
|
class << self
|
146
146
|
def existing_private_method; end
|
@@ -153,5 +153,5 @@ class StubbingNonExistentClassMethodTest < Mocha::TestCase
|
|
153
153
|
end
|
154
154
|
assert_passed(test_result)
|
155
155
|
end
|
156
|
-
|
156
|
+
# rubocop:enable Lint/DuplicateMethods
|
157
157
|
end
|
@@ -1,8 +1,7 @@
|
|
1
1
|
require File.expand_path('../acceptance_test_helper', __FILE__)
|
2
|
-
require 'mocha/
|
2
|
+
require 'mocha/configuration'
|
3
3
|
|
4
4
|
class StubbingNonExistentInstanceMethodTest < Mocha::TestCase
|
5
|
-
|
6
5
|
include AcceptanceTest
|
7
6
|
|
8
7
|
def setup
|
@@ -14,7 +13,7 @@ class StubbingNonExistentInstanceMethodTest < Mocha::TestCase
|
|
14
13
|
end
|
15
14
|
|
16
15
|
def test_should_allow_stubbing_non_existent_instance_method
|
17
|
-
Mocha
|
16
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :allow }
|
18
17
|
instance = Class.new.new
|
19
18
|
test_result = run_as_test do
|
20
19
|
instance.stubs(:non_existent_method)
|
@@ -24,7 +23,7 @@ class StubbingNonExistentInstanceMethodTest < Mocha::TestCase
|
|
24
23
|
end
|
25
24
|
|
26
25
|
def test_should_warn_when_stubbing_non_existent_instance_method
|
27
|
-
Mocha
|
26
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :warn }
|
28
27
|
instance = Class.new.new
|
29
28
|
test_result = run_as_test do
|
30
29
|
instance.stubs(:non_existent_method)
|
@@ -34,7 +33,7 @@ class StubbingNonExistentInstanceMethodTest < Mocha::TestCase
|
|
34
33
|
end
|
35
34
|
|
36
35
|
def test_should_prevent_stubbing_non_existent_instance_method
|
37
|
-
Mocha
|
36
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
38
37
|
instance = Class.new.new
|
39
38
|
test_result = run_as_test do
|
40
39
|
instance.stubs(:non_existent_method)
|
@@ -53,7 +52,7 @@ class StubbingNonExistentInstanceMethodTest < Mocha::TestCase
|
|
53
52
|
end
|
54
53
|
|
55
54
|
def test_should_allow_stubbing_existing_public_instance_method
|
56
|
-
Mocha
|
55
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
57
56
|
klass = Class.new do
|
58
57
|
def existing_public_method; end
|
59
58
|
public :existing_public_method
|
@@ -66,9 +65,9 @@ class StubbingNonExistentInstanceMethodTest < Mocha::TestCase
|
|
66
65
|
end
|
67
66
|
|
68
67
|
def test_should_allow_stubbing_method_to_which_instance_responds
|
69
|
-
Mocha
|
68
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
70
69
|
klass = Class.new do
|
71
|
-
def respond_to?(method,
|
70
|
+
def respond_to?(method, _include_private = false)
|
72
71
|
(method == :method_to_which_instance_responds)
|
73
72
|
end
|
74
73
|
end
|
@@ -80,7 +79,7 @@ class StubbingNonExistentInstanceMethodTest < Mocha::TestCase
|
|
80
79
|
end
|
81
80
|
|
82
81
|
def test_should_allow_stubbing_existing_protected_instance_method
|
83
|
-
Mocha
|
82
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
84
83
|
klass = Class.new do
|
85
84
|
def existing_protected_method; end
|
86
85
|
protected :existing_protected_method
|
@@ -93,7 +92,7 @@ class StubbingNonExistentInstanceMethodTest < Mocha::TestCase
|
|
93
92
|
end
|
94
93
|
|
95
94
|
def test_should_allow_stubbing_existing_private_instance_method
|
96
|
-
Mocha
|
95
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
97
96
|
klass = Class.new do
|
98
97
|
def existing_private_method; end
|
99
98
|
private :existing_private_method
|
@@ -106,7 +105,7 @@ class StubbingNonExistentInstanceMethodTest < Mocha::TestCase
|
|
106
105
|
end
|
107
106
|
|
108
107
|
def test_should_allow_stubbing_existing_public_instance_superclass_method
|
109
|
-
Mocha
|
108
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
110
109
|
superklass = Class.new do
|
111
110
|
def existing_public_method; end
|
112
111
|
public :existing_public_method
|
@@ -119,7 +118,7 @@ class StubbingNonExistentInstanceMethodTest < Mocha::TestCase
|
|
119
118
|
end
|
120
119
|
|
121
120
|
def test_should_allow_stubbing_existing_protected_instance_superclass_method
|
122
|
-
Mocha
|
121
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
123
122
|
superklass = Class.new do
|
124
123
|
def existing_protected_method; end
|
125
124
|
protected :existing_protected_method
|
@@ -132,7 +131,7 @@ class StubbingNonExistentInstanceMethodTest < Mocha::TestCase
|
|
132
131
|
end
|
133
132
|
|
134
133
|
def test_should_allow_stubbing_existing_private_instance_superclass_method
|
135
|
-
Mocha
|
134
|
+
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
|
136
135
|
superklass = Class.new do
|
137
136
|
def existing_private_method; end
|
138
137
|
private :existing_private_method
|
@@ -143,5 +142,4 @@ class StubbingNonExistentInstanceMethodTest < Mocha::TestCase
|
|
143
142
|
end
|
144
143
|
assert_passed(test_result)
|
145
144
|
end
|
146
|
-
|
147
145
|
end
|