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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 17067ef2117df2bcf63d40f8e764f28d584a5e6243e40d42533a571532329c43
|
4
|
+
data.tar.gz: c2ce2f9b3ca8950dc8fa8958a106bac339f3a96018849c50954ac4b53f024893
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c40927eb7a63d40a2fd77676e5a3c2362d20f3e0601386c3e848f96d631d1ee1101d46619ed8a3f1fea952e3d9a56f0cc9205fe94b115866358bac2baadf3958
|
7
|
+
data.tar.gz: ce24527412963c7c89611d2517ee20790e01efa4dafa5b3c0f6229b7993baaf5c8db2b7e49b378f65d61070390ab0ccf797f7b1cbf1bcfa3ba98f363b6473e21
|
data/.rubocop.yml
ADDED
@@ -0,0 +1,61 @@
|
|
1
|
+
inherit_from: .rubocop_todo.yml
|
2
|
+
|
3
|
+
AllCops:
|
4
|
+
TargetRubyVersion: 2.2 # closest to required_ruby_version of '>= 1.8.6'
|
5
|
+
|
6
|
+
# Even the reference in the documentation suggests that you should prefer
|
7
|
+
# `alias_method` vs `alias`, so I don't understand why that isn't the default.
|
8
|
+
Style/Alias:
|
9
|
+
EnforcedStyle: prefer_alias_method
|
10
|
+
|
11
|
+
Style/Documentation:
|
12
|
+
Enabled: false
|
13
|
+
|
14
|
+
# Enumerable#each_with_object only available since Ruby v1.9
|
15
|
+
Style/EachWithObject:
|
16
|
+
Enabled: false
|
17
|
+
|
18
|
+
# Kernel#__dir__ has only been available since Ruby v2.0
|
19
|
+
Style/ExpandPathArguments:
|
20
|
+
Enabled: false
|
21
|
+
|
22
|
+
# Kernel#format has only supported named references since Ruby v1.9
|
23
|
+
Style/FormatStringToken:
|
24
|
+
EnforcedStyle: unannotated
|
25
|
+
|
26
|
+
# ruby19 style has only been supported since Ruby v1.9
|
27
|
+
Style/HashSyntax:
|
28
|
+
EnforcedStyle: hash_rockets
|
29
|
+
|
30
|
+
# I'm not keen on this cop, because it's easy to miss the conditional
|
31
|
+
# I think the results are particularly unhelpful when Metrics/LineLength is big
|
32
|
+
Style/IfUnlessModifier:
|
33
|
+
Enabled: false
|
34
|
+
|
35
|
+
# Lambda literal syntax has only been supported since Ruby v2.0
|
36
|
+
Style/Lambda:
|
37
|
+
EnforcedStyle: lambda
|
38
|
+
|
39
|
+
# Symbol array literal syntax has only been supported since Ruby v2.0
|
40
|
+
Style/SymbolArray:
|
41
|
+
Enabled: false
|
42
|
+
|
43
|
+
# I'm not keen on this cop, because it's easy to miss the while/until
|
44
|
+
Style/WhileUntilModifier:
|
45
|
+
Enabled: false
|
46
|
+
|
47
|
+
# This recently introduced cop seems to have stirred up some controversy
|
48
|
+
Style/AccessModifierDeclarations:
|
49
|
+
Enabled: false
|
50
|
+
|
51
|
+
# Enabling this cop results in an "Infinite loop detected" exception
|
52
|
+
Layout/AccessModifierIndentation:
|
53
|
+
Enabled: false
|
54
|
+
|
55
|
+
# Allow long comment lines, e.g. YARD documentation
|
56
|
+
Metrics/LineLength:
|
57
|
+
IgnoredPatterns: ['\A\s*#']
|
58
|
+
|
59
|
+
# It's not possible to set TargetRubyVersion to Ruby < v2.2
|
60
|
+
Gemspec/RequiredRubyVersion:
|
61
|
+
Enabled: false
|
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config`
|
3
|
+
# on 2019-11-16 18:15:36 +0000 using RuboCop version 0.58.2.
|
4
|
+
# The point is for the user to remove these configuration records
|
5
|
+
# one by one as the offenses are removed from the code base.
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
8
|
+
|
9
|
+
# Offense count: 57
|
10
|
+
Metrics/AbcSize:
|
11
|
+
Max: 26
|
12
|
+
|
13
|
+
# Offense count: 23
|
14
|
+
# Configuration parameters: CountComments.
|
15
|
+
Metrics/ClassLength:
|
16
|
+
Max: 366
|
17
|
+
|
18
|
+
# Offense count: 172
|
19
|
+
# Configuration parameters: CountComments.
|
20
|
+
Metrics/MethodLength:
|
21
|
+
Max: 31
|
22
|
+
|
23
|
+
# Offense count: 545
|
24
|
+
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
|
25
|
+
# URISchemes: http, https
|
26
|
+
Metrics/LineLength:
|
27
|
+
Max: 180
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
* Pull requests are welcomed.
|
2
|
+
* Fork the repository.
|
3
|
+
* Make your changes in a branch.
|
4
|
+
* Add/modify/remove tests as appropriate.
|
5
|
+
* Open a pull request based on a branch on your fork.
|
6
|
+
* Wait for your pull request build to pass on [Travis CI](https://travis-ci.org/freerange/mocha/pull_requests).
|
7
|
+
* Pull requests with failing tests will not be accepted.
|
data/README.md
CHANGED
@@ -1,12 +1,16 @@
|
|
1
|
-
## Mocha [![
|
1
|
+
## Mocha [![Build Status](https://travis-ci.org/freerange/mocha.svg?branch=master)](https://travis-ci.org/freerange/mocha) [![Gem Version](https://badge.fury.io/rb/mocha.svg)](http://badge.fury.io/rb/mocha) [![SemVer](https://api.dependabot.com/badges/compatibility_score?dependency-name=mocha&package-manager=bundler&version-scheme=semver)](https://dependabot.com/compatibility-score.html?dependency-name=mocha&package-manager=bundler&version-scheme=semver)
|
2
|
+
|
2
3
|
|
3
4
|
### Description
|
4
5
|
|
5
|
-
* A Ruby library for mocking and stubbing.
|
6
|
+
* A Ruby library for [mocking](http://xunitpatterns.com/Mock%20Object.html) and [stubbing](http://xunitpatterns.com/Test%20Stub.html) - but deliberately not (yet) [faking](http://xunitpatterns.com/Fake%20Object.html) or [spying](http://xunitpatterns.com/Test%20Spy.html).
|
6
7
|
* A unified, simple and readable syntax for both full & partial mocking.
|
7
8
|
* Built-in support for MiniTest and Test::Unit.
|
8
9
|
* Supported by many other test frameworks.
|
9
10
|
|
11
|
+
### Intended Usage
|
12
|
+
Mocha is intended to be used in unit tests for the [Mock Object](http://xunitpatterns.com/Mock%20Object.html) or [Test Stub](http://xunitpatterns.com/Test%20Stub.html) types of [Test Double](http://xunitpatterns.com/Test%20Double.html), not the [Fake Object](http://xunitpatterns.com/Fake%20Object.html) or [Test Spy](http://xunitpatterns.com/Test%20Spy.html) types. Although it would be possible to extend Mocha to allow the implementation of fakes and spies, we have chosen to keep it focused on mocks and stubs.
|
13
|
+
|
10
14
|
### Installation
|
11
15
|
|
12
16
|
#### Gem
|
@@ -17,47 +21,95 @@ Install the latest version of the gem with the following command...
|
|
17
21
|
|
18
22
|
Note: If you are intending to use Mocha with Test::Unit or MiniTest, you should only setup Mocha *after* loading the relevant test library...
|
19
23
|
|
20
|
-
|
21
|
-
|
24
|
+
##### Test::Unit
|
25
|
+
|
26
|
+
```ruby
|
27
|
+
require 'rubygems'
|
28
|
+
gem 'mocha'
|
29
|
+
require 'test/unit'
|
30
|
+
require 'mocha/test_unit'
|
31
|
+
```
|
32
|
+
|
33
|
+
##### MiniTest
|
34
|
+
|
35
|
+
```ruby
|
36
|
+
require 'rubygems'
|
37
|
+
gem 'mocha'
|
38
|
+
require 'minitest/unit'
|
39
|
+
require 'mocha/minitest'
|
40
|
+
```
|
22
41
|
|
23
42
|
#### Bundler
|
24
43
|
|
25
44
|
If you're using Bundler, include Mocha in the `Gemfile` and then setup Mocha later once you know the test library has been loaded...
|
26
45
|
|
27
|
-
|
28
|
-
gem "mocha"
|
46
|
+
##### Test::Unit
|
29
47
|
|
30
|
-
|
31
|
-
|
32
|
-
|
48
|
+
```ruby
|
49
|
+
# Gemfile
|
50
|
+
gem "mocha"
|
51
|
+
|
52
|
+
# Elsewhere after Bundler has loaded gems e.g. after `require 'bundler/setup'`
|
53
|
+
require "test/unit"
|
54
|
+
require "mocha/test_unit"
|
55
|
+
```
|
56
|
+
|
57
|
+
##### MiniTest
|
58
|
+
|
59
|
+
```ruby
|
60
|
+
# Gemfile
|
61
|
+
gem "mocha"
|
62
|
+
|
63
|
+
# Elsewhere after Bundler has loaded gems e.g. after `require 'bundler/setup'`
|
64
|
+
require "minitest/unit"
|
65
|
+
require "mocha/minitest"
|
66
|
+
```
|
33
67
|
|
34
68
|
#### Rails
|
35
69
|
|
36
70
|
If you're loading Mocha using Bundler within a Rails application, you should setup Mocha manually e.g. at the bottom of your `test_helper.rb`.
|
37
71
|
|
38
|
-
|
39
|
-
|
72
|
+
##### MiniTest
|
73
|
+
|
74
|
+
```ruby
|
75
|
+
# Gemfile in Rails app
|
76
|
+
gem 'mocha'
|
40
77
|
|
41
|
-
|
42
|
-
|
78
|
+
# At bottom of test_helper.rb (or at least after `require 'rails/test_help'`)
|
79
|
+
require 'mocha/minitest'
|
80
|
+
```
|
43
81
|
|
44
|
-
|
82
|
+
##### RSpec
|
45
83
|
|
46
|
-
|
84
|
+
RSpec includes a mocha adapter. Just tell RSpec you want to mock with `:mocha`:
|
47
85
|
|
48
|
-
|
86
|
+
```ruby
|
87
|
+
# Gemfile in Rails app
|
88
|
+
gem 'mocha'
|
49
89
|
|
50
|
-
|
90
|
+
# Within `spec/spec_helper.rb`
|
91
|
+
RSpec.configure do |config|
|
92
|
+
config.mock_with :mocha
|
93
|
+
end
|
94
|
+
```
|
51
95
|
|
52
|
-
|
53
|
-
require "mocha/setup"
|
96
|
+
Note: There is no need to use a require statement to setup Mocha; RSpec does this itself.
|
54
97
|
|
55
|
-
|
98
|
+
##### MiniTest
|
56
99
|
|
100
|
+
```ruby
|
101
|
+
# At bottom of test_helper.rb (or at least after `require 'rails/test_help'`)
|
102
|
+
require 'mocha/minitest'
|
103
|
+
```
|
104
|
+
|
105
|
+
#### Known Issues
|
106
|
+
|
107
|
+
* In Mocha v1.2.0 there is a scenario where stubbing a class method originally defined in a module hangs the Ruby interpreter due to [a bug in Ruby v2.3.1](https://bugs.ruby-lang.org/issues/12832). See #272. This was fixed in Mocha v1.2.1.
|
108
|
+
* Since v1.1.0 Mocha has used prepended modules internally for stubbing methods. There is [an obscure Ruby bug](https://bugs.ruby-lang.org/issues/12876) in many (but not all) versions of Ruby between v2.0 & v2.3 which under certain circumstances may cause your Ruby interpreter to hang. See the Ruby bug report for more details. The bug has been fixed in Ruby v2.3.3 & v2.4.0.
|
109
|
+
* Stubbing an aliased class method, where the original method is defined in a module that's used to `extend` the class doesn't work in Ruby 1.8.x. See stub_method_defined_on_module_and_aliased_test.rb for an example of this behaviour.
|
57
110
|
* 0.13.x versions cause a harmless, but annoying, deprecation warning when used with Rails 3.2.0-3.2.12, 3.1.0-3.1.10 & 3.0.0-3.0.19.
|
58
111
|
* 0.11.x versions don't work with Rails 3.2.13 (`TypeError: superclass mismatch for class ExpectationError`). See #115.
|
59
112
|
* Versions 0.10.2, 0.10.3 & 0.11.0 of the Mocha gem were broken. Please do not use these versions.
|
60
|
-
* Versions 0.9.6 & 0.9.7 of the Mocha Rails plugin were broken. Please do not use these versions.
|
61
113
|
|
62
114
|
### Usage
|
63
115
|
|
@@ -65,7 +117,7 @@ Note: As of version 0.9.8, the Mocha plugin is not automatically setup at plugin
|
|
65
117
|
|
66
118
|
```ruby
|
67
119
|
require 'test/unit'
|
68
|
-
require 'mocha/
|
120
|
+
require 'mocha/test_unit'
|
69
121
|
|
70
122
|
class MiscExampleTest < Test::Unit::TestCase
|
71
123
|
def test_mocking_a_class_method
|
@@ -121,7 +173,7 @@ class Enterprise
|
|
121
173
|
end
|
122
174
|
|
123
175
|
require 'test/unit'
|
124
|
-
require 'mocha/
|
176
|
+
require 'mocha/test_unit'
|
125
177
|
|
126
178
|
class EnterpriseTest < Test::Unit::TestCase
|
127
179
|
def test_should_boldly_go
|
@@ -155,7 +207,7 @@ class Order
|
|
155
207
|
def find_all
|
156
208
|
# Database.connection.execute('select * from orders...
|
157
209
|
end
|
158
|
-
|
210
|
+
|
159
211
|
def number_shipped_since(date)
|
160
212
|
find_all.select { |order| order.shipped_on > date }.length
|
161
213
|
end
|
@@ -167,7 +219,7 @@ class Order
|
|
167
219
|
end
|
168
220
|
|
169
221
|
require 'test/unit'
|
170
|
-
require 'mocha/
|
222
|
+
require 'mocha/test_unit'
|
171
223
|
|
172
224
|
class OrderTest < Test::Unit::TestCase
|
173
225
|
# illustrates stubbing instance method
|
@@ -198,7 +250,15 @@ end
|
|
198
250
|
|
199
251
|
### Thread safety
|
200
252
|
|
201
|
-
Mocha
|
253
|
+
Mocha currently *does not* attempt to be thread-safe.
|
254
|
+
|
255
|
+
#### Can I test multi-threaded code with Mocha?
|
256
|
+
|
257
|
+
The short answer is no. In multi-threaded code Mocha exceptions may be raised in a thread other than the one which is running the test and thus a Mocha exception may not be correctly intercepted by Mocha exception handling code.
|
258
|
+
|
259
|
+
#### Can I run my tests across multiple threads?
|
260
|
+
|
261
|
+
Maybe, but probably not. Partial mocking changes the state of objects in the `ObjectSpace` which is shared across all threads in the Ruby process and this access to what is effectively global state is not synchronized. So, for example, if two tests are running concurrently and one uses `#any_instance` to modify a class, both tests will see those changes immediately.
|
202
262
|
|
203
263
|
### Expectation matching / invocation order
|
204
264
|
|
@@ -206,11 +266,27 @@ Stubs and expectations are basically the same thing. A stub is just an expectati
|
|
206
266
|
|
207
267
|
When a method is invoked on a mock object, the mock object searches through its expectations from newest to oldest to find one that matches the invocation. After the invocation, the matching expectation might stop matching further invocations.
|
208
268
|
|
209
|
-
See the [documentation](
|
269
|
+
See the [documentation](https://mocha.jamesmead.org/Mocha/Mock.html) for `Mocha::Mock` for further details.
|
270
|
+
|
271
|
+
### Configuration
|
272
|
+
|
273
|
+
If you want, Mocha can generate a warning or raise an exception when:
|
274
|
+
|
275
|
+
* stubbing a method unnecessarily
|
276
|
+
* stubbing method on a non-mock object
|
277
|
+
* stubbing a non-existent method
|
278
|
+
* stubbing a non-public method
|
279
|
+
|
280
|
+
See the [documentation](https://mocha.jamesmead.org/Mocha/Configuration.html) for `Mocha::Configuration` for further details.
|
281
|
+
|
282
|
+
##### MOCHA_OPTIONS
|
283
|
+
`MOCHA_OPTIONS` is an environment variable whose value can be set to a comma-separated list, so that we can specify multiple options e.g. `MOCHA_OPTIONS=debug,use_test_unit_gem`.
|
284
|
+
Only the following values are currently recognized and have an effect:
|
285
|
+
* `debug`: Enables a debug mode which will output backtraces for each deprecation warning. This is useful for finding where in the test suite the deprecated calls are.
|
210
286
|
|
211
287
|
### Useful Links
|
212
288
|
|
213
|
-
* [Official Documentation](
|
289
|
+
* [Official Documentation](https://mocha.jamesmead.org)
|
214
290
|
* [Source Code](http://github.com/freerange/mocha)
|
215
291
|
* [Mailing List](http://groups.google.com/group/mocha-developer)
|
216
292
|
* [James Mead's Blog](http://jamesmead.org/blog/)
|
@@ -220,25 +296,43 @@ See the [documentation](http://gofreerange.com/mocha/docs/Mocha/Mock.html) for `
|
|
220
296
|
* [Mock Roles Not Objects](http://www.jmock.org/oopsla2004.pdf)
|
221
297
|
* [jMock](http://www.jmock.org/)
|
222
298
|
|
223
|
-
### Contributing
|
224
|
-
|
225
|
-
* Fork the repository.
|
226
|
-
* Make your changes in a branch.
|
227
|
-
* Add tests for new behaviour. Modify existing tests for changes to existing behaviour.
|
228
|
-
* Run `bin/build-matrix` from the root directory and ensure all the tests pass.
|
229
|
-
* This script depends on `rbenv` being installed.
|
230
|
-
* You must have all the ruby versions listed in `.travis.yml` under the `rvm` key installed (currently 1.8.7, 1.9.3 & 2.0.0).
|
231
|
-
* I use `rbenv-aliases` to alias the patch versions.
|
232
|
-
* Note that the build matrix takes quite a while to run.
|
233
|
-
* Send us a pull request from your fork/branch.
|
234
|
-
|
235
299
|
### Contributors
|
236
300
|
|
237
301
|
See this [list of contributors](https://github.com/freerange/mocha/graphs/contributors).
|
238
302
|
|
239
|
-
###
|
303
|
+
### Releasing a new version
|
304
|
+
|
305
|
+
* Update the RELEASE.md file with a summary of changes
|
306
|
+
* Bump the version in `lib/mocha/version.rb`
|
307
|
+
* Commit & push to GitHub
|
308
|
+
* Check Travis CI build is passing - https://travis-ci.org/freerange/mocha
|
309
|
+
|
310
|
+
* Sign in to Google Analytics - https://analytics.google.com/analytics/web/
|
311
|
+
* Find the web property ID for floehopper (625523) > Mocha Documentation (UA-625523-7)
|
312
|
+
* Generate documentation:
|
313
|
+
|
314
|
+
```bash
|
315
|
+
$ MOCHA_GENERATE_DOCS=true bundle install
|
240
316
|
|
241
|
-
|
317
|
+
$ MOCHA_GENERATE_DOCS=true GOOGLE_ANALYTICS_WEB_PROPERTY_ID=UA-625523-7 rake generate_docs
|
318
|
+
```
|
319
|
+
* Commit documentation & push to GitHub
|
320
|
+
* Sign in to rubygems.org and find API key - https://rubygems.org/profile/edit
|
321
|
+
|
322
|
+
```bash
|
323
|
+
$ curl -u james@floehopper.org https://rubygems.org/api/v1/api_key.yaml > ~/.gem/credentials; chmod 0600 ~/.gem/credentials`
|
324
|
+
```
|
325
|
+
|
326
|
+
* Release gem to Rubygems:
|
327
|
+
|
328
|
+
```bash
|
329
|
+
$ rake release
|
330
|
+
[runs tests]
|
331
|
+
mocha 1.2.0 built to pkg/mocha-1.2.0.gem.
|
332
|
+
Tagged v1.2.0.
|
333
|
+
Pushed git commits and tags.
|
334
|
+
Pushed mocha 1.2.0 to rubygems.org.
|
335
|
+
```
|
242
336
|
|
243
337
|
### History
|
244
338
|
|
data/RELEASE.md
CHANGED
@@ -1,7 +1,155 @@
|
|
1
1
|
# Release Notes
|
2
2
|
|
3
|
-
## 1.
|
4
|
-
|
3
|
+
## 1.10.0.alpha
|
4
|
+
|
5
|
+
### External changes
|
6
|
+
|
7
|
+
* Remove dependency on metaclass gem (#49, #365)
|
8
|
+
* Accept symbol (as well as a string) as mock/stub name - thanks to @nitishr (#347, #353, #377)
|
9
|
+
* More realistic examples in documentation for `Expectation#yields` and `#multiple_yields` - thanks to @nitishr (#352, #383)
|
10
|
+
* Improve documentation for `Mock#responds_like` & `#responds_like_instance_of` - thanks to @nitishr (#337, #384)
|
11
|
+
* Make `Expectation#yields` & `Expectation#multiple_yields` fail when the caller of the stubbed method does not provide a block. This is a change to an undocumented aspect of the public API's behaviour. If this causes your tests to fail, then fix it by removing the unnecessary call to `Expectation#yields` or `Expectation#multiple_yields` - thanks to @nitishr (#382)
|
12
|
+
* Document `MOCHA_OPTIONS` in README - thanks to @nitishr (#311, #386)
|
13
|
+
* Add documentation to explain how Mocha is intended to be used - thanks to @nitishr (#330, #385)
|
14
|
+
* Deprecation warning if integration using 'mocha/test_unit' or 'mocha/minitest' fails - thanks to @nitishr (#229, #389, c6032d0b)
|
15
|
+
* Require at least one specified sequence for `Expectation#in_sequence` - thanks to @nitishr (#79, #396, 9020248a)
|
16
|
+
* Make signatures of `Mock#unstub` & `ObjectMethods#unstub` consistent - thanks to @nitishr (#397, f04d437)
|
17
|
+
* Deprecate requiring 'mocha/setup' (36adf880)
|
18
|
+
* Optionally display matching invocations alongside expectations - thanks to @nitishr (#178, #394, 00f0540, #410)
|
19
|
+
* Put deprecations into effect (#400, #418):
|
20
|
+
* Remove deprecated 'mocha_standalone.rb' & 'mocha/standalone.rb'
|
21
|
+
* Fail fast if no test library loaded
|
22
|
+
* Removed optional block for `Mocha::API#mock`, `#stub` & `#stub_everything`
|
23
|
+
* Remove deprecated `ParameterMatchers#has_equivalent_query_string` method
|
24
|
+
* Remove deprecated 'mocha/mini_test.rb'
|
25
|
+
* Fix typo in docs for `Mocha::Configuration.prevent` (266ce71c)
|
26
|
+
* New-style configuration (see documentation for `Mocha::Configuration`) (#407, #421)
|
27
|
+
* Deprecate support for Ruby versions earlier than v1.9 (#325, c5f8496d)
|
28
|
+
* Deprecate support for versions of test-unit & minitest which need monkey-patching (a34e1a88)
|
29
|
+
* Deprecate old-style Rails plugin (#403, 2df77134)
|
30
|
+
* Documentation fixes & improvements which also fix YARD warnings (472d5416, a2c0d64a)
|
31
|
+
|
32
|
+
### Internal changes
|
33
|
+
|
34
|
+
* Pin minitest to v5.11.3 for Ruby v1.8.7 to fix build; minitest no longer supports Ruby v1.8.7 (4a0a580)
|
35
|
+
* Upgrade JRuby to v9.2.8.0 in Travis CI builds (aa29b3f)
|
36
|
+
* Only run rubocop for MRI Ruby versions & non-integration test builds (8f1c6af)
|
37
|
+
* Reduce duplication in any instance method class - thanks to @nitishr (#378)
|
38
|
+
* Simplify `AnyInstanceMethod`, `ClassMethod`, `InstanceMethod`, `ModuleMethod` class hierarchy - thanks to @nitishr (#381)
|
39
|
+
* Simplify `ClassMethods#method_exists?` & `ObjectMethods#method_exists?` making them consistent - thanks to @nitishr (#270, #362, #370)
|
40
|
+
* Don't override definition of `singleton_class` in `ClassMethods` - thanks to @nitishr (#391, #392)
|
41
|
+
* Do not include 'method_definer' methods into all objects (#268, #402)
|
42
|
+
* Distinguish different `ObjectMethods` modules (#268, #404)
|
43
|
+
* Pass invocation to expectation list methods - thanks to @nitishr (#408, #409, #411)
|
44
|
+
* Consistently use `assert_raises` - thanks to @nitishr (#405, #412, a66b7bed)
|
45
|
+
* Update Ruby & JRuby versions in Travis CI config (18cb1a93, eb061c53)
|
46
|
+
* Rubocop improvements (aa16ea67...6f4db70b, 2a1240e6...e95716ae)
|
47
|
+
* Fix inconsistency in CardinalityTest (aa10e0a8)
|
48
|
+
* Fix test failures on Mac OSX Catalina - thanks to @nitishr (#413, #417, #419, 8a0f2535)
|
49
|
+
* Remove default argument in `Expectation#invoke` - thanks to @nitishr (#414, #420)
|
50
|
+
|
51
|
+
## 1.9.0
|
52
|
+
|
53
|
+
* Add TruffleRuby to Travis CI build matrix - thanks to @deepj (#354)
|
54
|
+
* Explicitly set Travis CI OS to Ubuntu Trusty 14.04 (ded1fa45)
|
55
|
+
* Expand explanation of thread-safety concerns - thanks to @techbelly (#357)
|
56
|
+
* Refactor class method and any instance method - thanks to @chrisroos (#358)
|
57
|
+
* Rely on default bundler version in Travis CI builds (3352e9c5)
|
58
|
+
* Fix local build-matrix script (11abe231)
|
59
|
+
* No need to install latest bundler in build-matrix script (8247a894)
|
60
|
+
|
61
|
+
## 1.8.0
|
62
|
+
|
63
|
+
* Constrain rubocop version to avoid breaking Travis CI builds (05e507f5)
|
64
|
+
* Avoid calling Kernel#format from ObjectMethods#mocha_inspect - thanks to @hoffmanilya (#345)
|
65
|
+
* Fix build matrix script (#346)
|
66
|
+
* Avoid deprecation warning in gemspec (4976e0bc)
|
67
|
+
* Removed link to documentation translation (ef428ea2)
|
68
|
+
* Don't use the new bundler v2 in builds (683ded9b)
|
69
|
+
* Moved documentation from https://gofreerange.com/mocha/docs to https://mocha.jamesmead.org/ [683ded...a17fde](https://github.com/freerange/mocha/compare/683ded...a17fde)
|
70
|
+
|
71
|
+
## 1.7.0
|
72
|
+
|
73
|
+
* Update Ruby & JRuby versions in Travis CI config (9bf55631 & 3883af7e)
|
74
|
+
* Simplify gemspec (63744f86)
|
75
|
+
* Add rubocop and fix most cop violations (#341)
|
76
|
+
* Use Kernel#warn for deprecations - thanks to @etiennebarrie (#333, 196970a)
|
77
|
+
|
78
|
+
## 1.6.0
|
79
|
+
|
80
|
+
* Fix subtle bug in setting correct visibility of stubbed module methods on `Kernel` or `Object` - thanks to @chrisroos (#295)
|
81
|
+
* Avoid mocks for partial mocking leaking into subsequent tests - thanks to @skliew for reporting (#331)
|
82
|
+
* Remove OpenCollective badge, backers & sponsors (a283a079)
|
83
|
+
* Change gem version badge to SVG format and add SemVer stability badge - thanks to @greysteil (#335)
|
84
|
+
* Improve documentation for Configuration (#236)
|
85
|
+
|
86
|
+
## 1.5.0
|
87
|
+
|
88
|
+
* Prevent use of Mocha outside the context of a test/example - thanks to @andyw8 & @lzap (#327)
|
89
|
+
|
90
|
+
## 1.4.0
|
91
|
+
|
92
|
+
* Fix deprecation warning for `assert_nil` in `ClassMethodTest` (#308 & #309)
|
93
|
+
* Display file and line number in deprecation warning - thanks to @chrisarcand (#310, #312 & #313)
|
94
|
+
* Rename `mocha/mini_test.rb` to `mocha/minitest.rb` - thanks to @grosser (#320 & #322)
|
95
|
+
* Fix warning when delegating to mock in Ruby 2.4 - thanks to @tjvc (#321 & #323)
|
96
|
+
* Updates to Travis CI configuration ([73af600..9732726](https://github.com/freerange/mocha/compare/73af600...9732726) & 0426e5e)
|
97
|
+
|
98
|
+
## 1.3.0
|
99
|
+
|
100
|
+
* Ensure all tests run individually - thanks to @chrisroos (#267)
|
101
|
+
* Update Travis CI build status badge to show master branch status (#264)
|
102
|
+
* Correct RSpec section of the README - thanks to @myronmarston (0cc039c8)
|
103
|
+
* Fix pretty printing of quotes in `String#mocha_inspect` (#215 & #223)
|
104
|
+
* Add release instructions to README - thanks to @chrisroos (70a5febd & 3c664df7)
|
105
|
+
* Require at least Ruby v1.8.7 in gemspec - thanks to @knappe (3e20be8e)
|
106
|
+
* Remove redundant InstanceMethod#method_exists? - thanks to @chrisroos (8f58eddf)
|
107
|
+
* Reduce risk of hitting bug 12832 in Ruby v2.3 - thanks to @chrisroos (#277 & eca7560c)
|
108
|
+
* Fix JRuby build - thanks to @headius (jruby/jruby#4250) & @chrisroos (#274)
|
109
|
+
* Add latest stable version of JRuby to Travis CI build matrix (#288)
|
110
|
+
* Fix Ruby v1.8.7 builds on Travis CI (928b5a40 & 460dce5b)
|
111
|
+
* Deprecate passing block to mock object constructor (#290)
|
112
|
+
* Add a known issue to README for Ruby bug 12876 (#276)
|
113
|
+
* Add Ruby 2.4 and ruby-head to Travis CI build matrix - thanks to @junaruga (#297)
|
114
|
+
* Fix `Mocha::ParameterMatchers#includes` for `Array` values - thanks to @timcraft (#302)
|
115
|
+
* Use faster container-based virtual environments for Travis CI builds (#305)
|
116
|
+
* Rename `Mocha::ParameterMatchers::QueryStringMatches` to `QueryString` (#306)
|
117
|
+
* Handle blank parameter value for query string matcher - thanks to @weynsee (#303 & #304)
|
118
|
+
* Rename `Mocha::ParameterMatchers::QueryString` -> `EquivalentUri` (#307)
|
119
|
+
* Use `do ... end` instead of `{ ... }` in acceptance tests - thanks to @chrisroos (#294)
|
120
|
+
|
121
|
+
## 1.2.1
|
122
|
+
|
123
|
+
* Fixed #272. Workaround Ruby bug 12832 which caused interpreter to hang. See https://bugs.ruby-lang.org/issues/12832. Thanks to @chrisroos & @petems (6f1c8b9b, #273).
|
124
|
+
|
125
|
+
## 1.2.0
|
126
|
+
|
127
|
+
* Always use prepended module to stub class & instance methods for Ruby v2+ - thanks to @grosser & @chrisroos (43d56671, #244)
|
128
|
+
* Always use prepended module to stub AnyInstance methods in Ruby v2+ - thanks to @chrisroos (#262)
|
129
|
+
* Always set visibility of stub method to match stubbed method on included module - thanks to @grosser & @chrisroos (e87c03b0, #248)
|
130
|
+
* Always set visibility to stub method to match stubbed method on superclass - thanks to @chrisroos (38d902ad)
|
131
|
+
* Allow stubbing of method to which any instance responds (#200)
|
132
|
+
* Allow `includes` matcher to take matcher arguments - thanks to @lazyatom (#217)
|
133
|
+
* Avoid exception in older version of Rubygems - thanks to @chrisroos (78d930a7)
|
134
|
+
* Add licenses to gemspec as requested by @coreyhaines (#201)
|
135
|
+
* Fix typo in README - thanks to @jaredbeck (6119460d)
|
136
|
+
* Added section about using Mocha with RSpec & Rails to README (#221)
|
137
|
+
* Fix documentation for Mocha::API#stub method - thanks to @raeno (599b1dcd)
|
138
|
+
* Added backers and sponsors from OpenCollective - thanks to @piamancini (#253)
|
139
|
+
* Fix typo in docs for equals - thanks to @alexcoco (#254)
|
140
|
+
* Add known issue for Ruby v1.8 to README - thanks to @chrisroos (2c642096)
|
141
|
+
|
142
|
+
## 1.1.0
|
143
|
+
|
144
|
+
* Set visibility of any instance stub method.
|
145
|
+
* Stub methods with a prepended method if there are other prepended methods. Thanks to @mrsimo.
|
146
|
+
* Improve docs for `Mock#responds_like` & `#responds_like_instance_of`.
|
147
|
+
* Use GitHub convention for instructions on contributing to Mocha.
|
148
|
+
* Fix typos in docs. Thanks to @10io
|
149
|
+
|
150
|
+
## 1.0.0
|
151
|
+
|
152
|
+
### External changes
|
5
153
|
* Assume 'mocha' has been required when requiring 'mocha/setup'.
|
6
154
|
* Provide shortcuts for integrating with specific test library i.e. `require 'mocha/test_unit'` or `require 'mocha/mini_test'`
|
7
155
|
as alternatives to `require 'mocha/setup'`.
|
@@ -13,8 +161,20 @@ Note: this may break existing tests which rely on the old behaviour. Stubbing a
|
|
13
161
|
method on a child class would previously cause an unexpected invocation error. By searching up through the inheritance
|
14
162
|
hierarchy for each of the delegate mock objects, we can provide more intuitive behaviour. Instead of an unexpected invocation
|
15
163
|
error, invoking the method on the child class will cause the stubbed method on the superclass to be used.
|
16
|
-
* Run the standard test suite against Ruby 2.1.0 in the build matrix.
|
17
164
|
* Avoid recursion when constructing unexpected invocation message. Fixes #168.
|
165
|
+
* Add explanation of method dispatch. Heavily based on the relevant jMock v1 documentation. Fixes #172.
|
166
|
+
* Make class_eval line number more accurate. This sets the line number as the line number of the `def` statement. Closes #169.
|
167
|
+
* Allow nesting of `responds_with` parameter matcher. Closes #166.
|
168
|
+
* Define `Mocha` module before it's referenced. The test helper defines a class `TestCase` within the `Mocha` module. When
|
169
|
+
running the tests inside the bundle, the `Mocha` module happens to be defined at this point. However when running the tests outside the bundle, it is not defined and so an exception is raised: `uninitialized constant Mocha (NameError)`. Fixes #163.
|
170
|
+
* Document lack of thread-safety. Fixes #154.
|
171
|
+
* Document how to use the build-matrix script. Fixes #160.
|
172
|
+
* Stubbing non-public method should use same visibility. This will probably break some existing tests that were somehow relying
|
173
|
+
on the stubbed method being public while the original method was protected or private. Fixes #150.
|
174
|
+
|
175
|
+
### Internal changes
|
176
|
+
* Use lastest Rubygems in Travis CI builds.
|
177
|
+
* Run the standard test suite against Ruby 2.1.0 in the build matrix.
|
18
178
|
* Run integration tests against Ruby 2.0.0 with latest Test::Unit gem in the build matrix.
|
19
179
|
* Test::Unit is not available in Ruby v1.9.3 standard library, so remove it from the build matrix.
|
20
180
|
* Force use of Test::Unit runner, etc in relevant integration tests. Prior to this, I don't think we were really testing the
|
@@ -25,20 +185,10 @@ MiniTest gem was not loaded.
|
|
25
185
|
* Reset environment variables between build matrix builds.
|
26
186
|
* Only activate integration with relevant test library for each of the integration tests.
|
27
187
|
* Include standard build combinations from Travis CI config i.e. builds using standard library versions of test libraries.
|
28
|
-
* Add explanation of method dispatch. Heavily based on the relevant jMock v1 documentation. Fixes #172.
|
29
|
-
* Make class_eval line number more accurate. This sets the line number as the line number of the `def` statement. Closes #169.
|
30
|
-
* Allow nesting of `responds_with` parameter matcher. Closes #166.
|
31
|
-
* Define `Mocha` module before it's referenced. The test helper defines a class `TestCase` within the `Mocha` module. When
|
32
|
-
running the tests inside the bundle, the `Mocha` module happens to be defined at this point. However when running the tests outside the bundle, it is not defined and so an exception is raised: `uninitialized constant Mocha (NameError)`. Fixes #163.
|
33
|
-
* Document lack of thread-safety. Fixes #154.
|
34
|
-
* Document how to use the build-matrix script. Fixes #160.
|
35
|
-
* Stubbing non-public method should use same visibility. This will probably break some existing tests that were somehow relying
|
36
|
-
on the stubbed method being public while the original method was protected or private. Fixes #150.
|
37
|
-
* Remove ruby version map from build matrix script. I'm using the `rbenv-aliases` plugin to alias minor versions to the
|
38
|
-
relevant patch version.
|
39
188
|
* Fix `build-matrix.rb` script. Also use `.travis.yml` to decide what combinations to run. This means we
|
40
189
|
can now simulate the Travis CI build locally and avoid duplication. Fixes #157.
|
41
|
-
|
190
|
+
* Remove Ruby version map from build matrix script. I'm using the `rbenv-aliases` plugin to alias minor versions to the
|
191
|
+
relevant patch version.
|
42
192
|
|
43
193
|
## 0.14.0
|
44
194
|
|
@@ -363,7 +513,7 @@ Hash with wrong number of entries.
|
|
363
513
|
|
364
514
|
## 0.5.0
|
365
515
|
|
366
|
-
- Parameter Matchers - I
|
516
|
+
- Parameter Matchers - I've added a few Hamcrest-style parameter matchers which are designed to be used inside Expectation#with. The following matchers are currently available: anything(), includes(), has_key(), has_value(), has_entry(), all_of() & any_of(). More to follow soon. The idea is eventually to get rid of the nasty parameter_block option on Expectation#with.
|
367
517
|
|
368
518
|
object = mock()
|
369
519
|
object.expects(:method).with(has_key('key_1'))
|