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
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
CHANGED
@@ -1,12 +1,7 @@
|
|
1
1
|
* Pull requests are welcomed.
|
2
2
|
* Fork the repository.
|
3
3
|
* Make your changes in a branch.
|
4
|
-
* Add
|
5
|
-
*
|
6
|
-
|
7
|
-
|
8
|
-
* I use `rbenv-aliases` to alias the patch versions.
|
9
|
-
* Note that the build matrix takes quite a while to run.
|
10
|
-
* Send us a pull request from your fork/branch.
|
11
|
-
* Wait for your pull request to build on [Travis CI](https://travis-ci.org/freerange/mocha).
|
12
|
-
* I will not accept pull requests with failing tests.
|
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,13 +1,16 @@
|
|
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.
|
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
4
|
### Description
|
5
5
|
|
6
|
-
* 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).
|
7
7
|
* A unified, simple and readable syntax for both full & partial mocking.
|
8
8
|
* Built-in support for MiniTest and Test::Unit.
|
9
9
|
* Supported by many other test frameworks.
|
10
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
|
+
|
11
14
|
### Installation
|
12
15
|
|
13
16
|
#### Gem
|
@@ -92,14 +95,6 @@ end
|
|
92
95
|
|
93
96
|
Note: There is no need to use a require statement to setup Mocha; RSpec does this itself.
|
94
97
|
|
95
|
-
#### Rails Plugin
|
96
|
-
|
97
|
-
Install the Rails plugin...
|
98
|
-
|
99
|
-
$ rails plugin install git://github.com/freerange/mocha.git
|
100
|
-
|
101
|
-
Note: As of version 0.9.8, the Mocha plugin is not automatically setup at plugin load time. Instead it must be manually setup e.g. at the bottom of your `test_helper.rb`.
|
102
|
-
|
103
98
|
##### MiniTest
|
104
99
|
|
105
100
|
```ruby
|
@@ -115,7 +110,6 @@ require 'mocha/minitest'
|
|
115
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.
|
116
111
|
* 0.11.x versions don't work with Rails 3.2.13 (`TypeError: superclass mismatch for class ExpectationError`). See #115.
|
117
112
|
* Versions 0.10.2, 0.10.3 & 0.11.0 of the Mocha gem were broken. Please do not use these versions.
|
118
|
-
* Versions 0.9.6 & 0.9.7 of the Mocha Rails plugin were broken. Please do not use these versions.
|
119
113
|
|
120
114
|
### Usage
|
121
115
|
|
@@ -256,7 +250,15 @@ end
|
|
256
250
|
|
257
251
|
### Thread safety
|
258
252
|
|
259
|
-
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.
|
260
262
|
|
261
263
|
### Expectation matching / invocation order
|
262
264
|
|
@@ -264,11 +266,27 @@ Stubs and expectations are basically the same thing. A stub is just an expectati
|
|
264
266
|
|
265
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.
|
266
268
|
|
267
|
-
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.
|
268
286
|
|
269
287
|
### Useful Links
|
270
288
|
|
271
|
-
* [Official Documentation](
|
289
|
+
* [Official Documentation](https://mocha.jamesmead.org)
|
272
290
|
* [Source Code](http://github.com/freerange/mocha)
|
273
291
|
* [Mailing List](http://groups.google.com/group/mocha-developer)
|
274
292
|
* [James Mead's Blog](http://jamesmead.org/blog/)
|
@@ -282,107 +300,38 @@ See the [documentation](http://gofreerange.com/mocha/docs/Mocha/Mock.html) for `
|
|
282
300
|
|
283
301
|
See this [list of contributors](https://github.com/freerange/mocha/graphs/contributors).
|
284
302
|
|
285
|
-
### Backers
|
286
|
-
|
287
|
-
Support us with a monthly donation and help us continue our activities. [[Become a backer](https://opencollective.com/mocha#backer)]
|
288
|
-
|
289
|
-
<a href="https://opencollective.com/mocha/backer/0/website" target="_blank"><img src="https://opencollective.com/mocha/backer/0/avatar.svg"></a>
|
290
|
-
<a href="https://opencollective.com/mocha/backer/1/website" target="_blank"><img src="https://opencollective.com/mocha/backer/1/avatar.svg"></a>
|
291
|
-
<a href="https://opencollective.com/mocha/backer/2/website" target="_blank"><img src="https://opencollective.com/mocha/backer/2/avatar.svg"></a>
|
292
|
-
<a href="https://opencollective.com/mocha/backer/3/website" target="_blank"><img src="https://opencollective.com/mocha/backer/3/avatar.svg"></a>
|
293
|
-
<a href="https://opencollective.com/mocha/backer/4/website" target="_blank"><img src="https://opencollective.com/mocha/backer/4/avatar.svg"></a>
|
294
|
-
<a href="https://opencollective.com/mocha/backer/5/website" target="_blank"><img src="https://opencollective.com/mocha/backer/5/avatar.svg"></a>
|
295
|
-
<a href="https://opencollective.com/mocha/backer/6/website" target="_blank"><img src="https://opencollective.com/mocha/backer/6/avatar.svg"></a>
|
296
|
-
<a href="https://opencollective.com/mocha/backer/7/website" target="_blank"><img src="https://opencollective.com/mocha/backer/7/avatar.svg"></a>
|
297
|
-
<a href="https://opencollective.com/mocha/backer/8/website" target="_blank"><img src="https://opencollective.com/mocha/backer/8/avatar.svg"></a>
|
298
|
-
<a href="https://opencollective.com/mocha/backer/9/website" target="_blank"><img src="https://opencollective.com/mocha/backer/9/avatar.svg"></a>
|
299
|
-
<a href="https://opencollective.com/mocha/backer/10/website" target="_blank"><img src="https://opencollective.com/mocha/backer/10/avatar.svg"></a>
|
300
|
-
<a href="https://opencollective.com/mocha/backer/11/website" target="_blank"><img src="https://opencollective.com/mocha/backer/11/avatar.svg"></a>
|
301
|
-
<a href="https://opencollective.com/mocha/backer/12/website" target="_blank"><img src="https://opencollective.com/mocha/backer/12/avatar.svg"></a>
|
302
|
-
<a href="https://opencollective.com/mocha/backer/13/website" target="_blank"><img src="https://opencollective.com/mocha/backer/13/avatar.svg"></a>
|
303
|
-
<a href="https://opencollective.com/mocha/backer/14/website" target="_blank"><img src="https://opencollective.com/mocha/backer/14/avatar.svg"></a>
|
304
|
-
<a href="https://opencollective.com/mocha/backer/15/website" target="_blank"><img src="https://opencollective.com/mocha/backer/15/avatar.svg"></a>
|
305
|
-
<a href="https://opencollective.com/mocha/backer/16/website" target="_blank"><img src="https://opencollective.com/mocha/backer/16/avatar.svg"></a>
|
306
|
-
<a href="https://opencollective.com/mocha/backer/17/website" target="_blank"><img src="https://opencollective.com/mocha/backer/17/avatar.svg"></a>
|
307
|
-
<a href="https://opencollective.com/mocha/backer/18/website" target="_blank"><img src="https://opencollective.com/mocha/backer/18/avatar.svg"></a>
|
308
|
-
<a href="https://opencollective.com/mocha/backer/19/website" target="_blank"><img src="https://opencollective.com/mocha/backer/19/avatar.svg"></a>
|
309
|
-
<a href="https://opencollective.com/mocha/backer/20/website" target="_blank"><img src="https://opencollective.com/mocha/backer/20/avatar.svg"></a>
|
310
|
-
<a href="https://opencollective.com/mocha/backer/21/website" target="_blank"><img src="https://opencollective.com/mocha/backer/21/avatar.svg"></a>
|
311
|
-
<a href="https://opencollective.com/mocha/backer/22/website" target="_blank"><img src="https://opencollective.com/mocha/backer/22/avatar.svg"></a>
|
312
|
-
<a href="https://opencollective.com/mocha/backer/23/website" target="_blank"><img src="https://opencollective.com/mocha/backer/23/avatar.svg"></a>
|
313
|
-
<a href="https://opencollective.com/mocha/backer/24/website" target="_blank"><img src="https://opencollective.com/mocha/backer/24/avatar.svg"></a>
|
314
|
-
<a href="https://opencollective.com/mocha/backer/25/website" target="_blank"><img src="https://opencollective.com/mocha/backer/25/avatar.svg"></a>
|
315
|
-
<a href="https://opencollective.com/mocha/backer/26/website" target="_blank"><img src="https://opencollective.com/mocha/backer/26/avatar.svg"></a>
|
316
|
-
<a href="https://opencollective.com/mocha/backer/27/website" target="_blank"><img src="https://opencollective.com/mocha/backer/27/avatar.svg"></a>
|
317
|
-
<a href="https://opencollective.com/mocha/backer/28/website" target="_blank"><img src="https://opencollective.com/mocha/backer/28/avatar.svg"></a>
|
318
|
-
<a href="https://opencollective.com/mocha/backer/29/website" target="_blank"><img src="https://opencollective.com/mocha/backer/29/avatar.svg"></a>
|
319
|
-
|
320
|
-
### Sponsors
|
321
|
-
|
322
|
-
Become a sponsor and get your logo on our README on Github with a link to your site. [[Become a sponsor](https://opencollective.com/mocha#sponsor)]
|
323
|
-
|
324
|
-
<a href="https://opencollective.com/mocha/sponsor/0/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/0/avatar.svg"></a>
|
325
|
-
<a href="https://opencollective.com/mocha/sponsor/1/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/1/avatar.svg"></a>
|
326
|
-
<a href="https://opencollective.com/mocha/sponsor/2/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/2/avatar.svg"></a>
|
327
|
-
<a href="https://opencollective.com/mocha/sponsor/3/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/3/avatar.svg"></a>
|
328
|
-
<a href="https://opencollective.com/mocha/sponsor/4/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/4/avatar.svg"></a>
|
329
|
-
<a href="https://opencollective.com/mocha/sponsor/5/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/5/avatar.svg"></a>
|
330
|
-
<a href="https://opencollective.com/mocha/sponsor/6/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/6/avatar.svg"></a>
|
331
|
-
<a href="https://opencollective.com/mocha/sponsor/7/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/7/avatar.svg"></a>
|
332
|
-
<a href="https://opencollective.com/mocha/sponsor/8/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/8/avatar.svg"></a>
|
333
|
-
<a href="https://opencollective.com/mocha/sponsor/9/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/9/avatar.svg"></a>
|
334
|
-
<a href="https://opencollective.com/mocha/sponsor/10/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/10/avatar.svg"></a>
|
335
|
-
<a href="https://opencollective.com/mocha/sponsor/11/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/11/avatar.svg"></a>
|
336
|
-
<a href="https://opencollective.com/mocha/sponsor/12/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/12/avatar.svg"></a>
|
337
|
-
<a href="https://opencollective.com/mocha/sponsor/13/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/13/avatar.svg"></a>
|
338
|
-
<a href="https://opencollective.com/mocha/sponsor/14/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/14/avatar.svg"></a>
|
339
|
-
<a href="https://opencollective.com/mocha/sponsor/15/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/15/avatar.svg"></a>
|
340
|
-
<a href="https://opencollective.com/mocha/sponsor/16/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/16/avatar.svg"></a>
|
341
|
-
<a href="https://opencollective.com/mocha/sponsor/17/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/17/avatar.svg"></a>
|
342
|
-
<a href="https://opencollective.com/mocha/sponsor/18/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/18/avatar.svg"></a>
|
343
|
-
<a href="https://opencollective.com/mocha/sponsor/19/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/19/avatar.svg"></a>
|
344
|
-
<a href="https://opencollective.com/mocha/sponsor/20/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/20/avatar.svg"></a>
|
345
|
-
<a href="https://opencollective.com/mocha/sponsor/21/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/21/avatar.svg"></a>
|
346
|
-
<a href="https://opencollective.com/mocha/sponsor/22/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/22/avatar.svg"></a>
|
347
|
-
<a href="https://opencollective.com/mocha/sponsor/23/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/23/avatar.svg"></a>
|
348
|
-
<a href="https://opencollective.com/mocha/sponsor/24/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/24/avatar.svg"></a>
|
349
|
-
<a href="https://opencollective.com/mocha/sponsor/25/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/25/avatar.svg"></a>
|
350
|
-
<a href="https://opencollective.com/mocha/sponsor/26/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/26/avatar.svg"></a>
|
351
|
-
<a href="https://opencollective.com/mocha/sponsor/27/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/27/avatar.svg"></a>
|
352
|
-
<a href="https://opencollective.com/mocha/sponsor/28/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/28/avatar.svg"></a>
|
353
|
-
<a href="https://opencollective.com/mocha/sponsor/29/website" target="_blank"><img src="https://opencollective.com/mocha/sponsor/29/avatar.svg"></a>
|
354
|
-
|
355
|
-
### Translations
|
356
|
-
|
357
|
-
* [Serbo-Croatian](http://science.webhostinggeeks.com/mocha) by [WHG Team](http://webhostinggeeks.com/). (may be out-of-date)
|
358
|
-
|
359
303
|
### Releasing a new version
|
360
304
|
|
361
305
|
* Update the RELEASE.md file with a summary of changes
|
362
306
|
* Bump the version in `lib/mocha/version.rb`
|
363
|
-
* Commit & push to
|
307
|
+
* Commit & push to GitHub
|
364
308
|
* Check Travis CI build is passing - https://travis-ci.org/freerange/mocha
|
365
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
|
316
|
+
|
317
|
+
$ MOCHA_GENERATE_DOCS=true GOOGLE_ANALYTICS_WEB_PROPERTY_ID=UA-625523-7 rake generate_docs
|
318
|
+
```
|
319
|
+
* Commit documentation & push to GitHub
|
366
320
|
* Sign in to rubygems.org and find API key - https://rubygems.org/profile/edit
|
367
321
|
|
368
322
|
```bash
|
369
323
|
$ curl -u james@floehopper.org https://rubygems.org/api/v1/api_key.yaml > ~/.gem/credentials; chmod 0600 ~/.gem/credentials`
|
370
324
|
```
|
371
325
|
|
372
|
-
*
|
373
|
-
* Find the web property ID for Go Free Range Ltd > Mocha Documentation (UA-45002715-2)
|
326
|
+
* Release gem to Rubygems:
|
374
327
|
|
375
328
|
```bash
|
376
|
-
$
|
377
|
-
|
378
|
-
$ MOCHA_GENERATE_DOCS=true GOOGLE_ANALYTICS_WEB_PROPERTY_ID=UA-45002715-2 rake release
|
329
|
+
$ rake release
|
330
|
+
[runs tests]
|
379
331
|
mocha 1.2.0 built to pkg/mocha-1.2.0.gem.
|
380
332
|
Tagged v1.2.0.
|
381
333
|
Pushed git commits and tags.
|
382
334
|
Pushed mocha 1.2.0 to rubygems.org.
|
383
|
-
[runs tests]
|
384
|
-
[generates docs]
|
385
|
-
[deploys docs]
|
386
335
|
```
|
387
336
|
|
388
337
|
### History
|
data/RELEASE.md
CHANGED
@@ -1,5 +1,88 @@
|
|
1
1
|
# Release Notes
|
2
2
|
|
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
|
+
|
3
86
|
## 1.5.0
|
4
87
|
|
5
88
|
* Prevent use of Mocha outside the context of a test/example - thanks to @andyw8 & @lzap (#327)
|
data/Rakefile
CHANGED
@@ -1,17 +1,15 @@
|
|
1
|
-
require
|
1
|
+
require 'bundler'
|
2
2
|
Bundler::GemHelper.install_tasks
|
3
|
-
require
|
4
|
-
|
5
|
-
MOCHA_DOCS_HOST = ENV['MOCHA_DOCS_HOST'] || 'gofreerange.com'
|
3
|
+
require 'bundler/setup'
|
6
4
|
|
7
5
|
require 'rake/testtask'
|
8
6
|
|
9
|
-
desc
|
7
|
+
desc 'Run all tests'
|
10
8
|
task 'default' => ['test', 'test:performance']
|
11
9
|
|
12
|
-
desc
|
10
|
+
desc 'Run tests'
|
13
11
|
task 'test' do
|
14
|
-
if test_library = ENV['MOCHA_RUN_INTEGRATION_TESTS']
|
12
|
+
if (test_library = ENV['MOCHA_RUN_INTEGRATION_TESTS'])
|
15
13
|
Rake::Task["test:integration:#{test_library}"].invoke
|
16
14
|
else
|
17
15
|
Rake::Task['test:units'].invoke
|
@@ -19,14 +17,13 @@ task 'test' do
|
|
19
17
|
end
|
20
18
|
end
|
21
19
|
|
22
|
-
namespace 'test' do
|
23
|
-
|
20
|
+
namespace 'test' do # rubocop:disable Metrics/BlockLength
|
24
21
|
unit_tests = FileList['test/unit/**/*_test.rb']
|
25
22
|
all_acceptance_tests = FileList['test/acceptance/*_test.rb']
|
26
23
|
ruby186_incompatible_acceptance_tests = FileList['test/acceptance/stub_class_method_defined_on_*_test.rb'] + FileList['test/acceptance/stub_instance_method_defined_on_*_test.rb']
|
27
24
|
ruby186_compatible_acceptance_tests = all_acceptance_tests - ruby186_incompatible_acceptance_tests
|
28
25
|
|
29
|
-
desc
|
26
|
+
desc 'Run unit tests'
|
30
27
|
Rake::TestTask.new('units') do |t|
|
31
28
|
t.libs << 'test'
|
32
29
|
t.test_files = unit_tests
|
@@ -34,20 +31,20 @@ namespace 'test' do
|
|
34
31
|
t.warning = true
|
35
32
|
end
|
36
33
|
|
37
|
-
desc
|
34
|
+
desc 'Run acceptance tests'
|
38
35
|
Rake::TestTask.new('acceptance') do |t|
|
39
36
|
t.libs << 'test'
|
40
|
-
if defined?(RUBY_VERSION) && (RUBY_VERSION >=
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
37
|
+
t.test_files = if defined?(RUBY_VERSION) && (RUBY_VERSION >= '1.8.7')
|
38
|
+
all_acceptance_tests
|
39
|
+
else
|
40
|
+
ruby186_compatible_acceptance_tests
|
41
|
+
end
|
45
42
|
t.verbose = true
|
46
43
|
t.warning = true
|
47
44
|
end
|
48
45
|
|
49
46
|
namespace 'integration' do
|
50
|
-
desc
|
47
|
+
desc 'Run MiniTest integration tests (intended to be run in its own process)'
|
51
48
|
Rake::TestTask.new('minitest') do |t|
|
52
49
|
t.libs << 'test'
|
53
50
|
t.test_files = FileList['test/integration/mini_test_test.rb']
|
@@ -55,7 +52,7 @@ namespace 'test' do
|
|
55
52
|
t.warning = true
|
56
53
|
end
|
57
54
|
|
58
|
-
desc
|
55
|
+
desc 'Run Test::Unit integration tests (intended to be run in its own process)'
|
59
56
|
Rake::TestTask.new('test-unit') do |t|
|
60
57
|
t.libs << 'test'
|
61
58
|
t.test_files = FileList['test/integration/test_unit_test.rb']
|
@@ -74,7 +71,7 @@ namespace 'test' do
|
|
74
71
|
# t.rcov_opts << '--xref'
|
75
72
|
# end
|
76
73
|
|
77
|
-
desc
|
74
|
+
desc 'Run performance tests'
|
78
75
|
task 'performance' do
|
79
76
|
require File.join(File.dirname(__FILE__), 'test', 'acceptance', 'stubba_example_test')
|
80
77
|
require File.join(File.dirname(__FILE__), 'test', 'acceptance', 'mocha_example_test')
|
@@ -84,9 +81,18 @@ namespace 'test' do
|
|
84
81
|
puts "#{test_case}: #{benchmark_test_case(test_case, iterations)} seconds."
|
85
82
|
end
|
86
83
|
end
|
84
|
+
end
|
87
85
|
|
86
|
+
begin
|
87
|
+
require 'rubocop/rake_task'
|
88
|
+
if RUBY_VERSION >= '2.2.0' && (defined?(RUBY_ENGINE) && RUBY_ENGINE == 'ruby') && ENV['MOCHA_RUN_INTEGRATION_TESTS'].nil?
|
89
|
+
RuboCop::RakeTask.new
|
90
|
+
task 'test' => 'rubocop'
|
91
|
+
end
|
92
|
+
rescue LoadError # rubocop:disable Lint/HandleExceptions
|
88
93
|
end
|
89
94
|
|
95
|
+
# rubocop:disable Metrics/CyclomaticComplexity,Metrics/PerceivedComplexity
|
90
96
|
def benchmark_test_case(klass, iterations)
|
91
97
|
require 'benchmark'
|
92
98
|
require 'mocha/detection/mini_test'
|
@@ -94,33 +100,34 @@ def benchmark_test_case(klass, iterations)
|
|
94
100
|
if defined?(MiniTest)
|
95
101
|
minitest_version = Gem::Version.new(Mocha::Detection::MiniTest.version)
|
96
102
|
if Gem::Requirement.new('>= 5.0.0').satisfied_by?(minitest_version)
|
97
|
-
result = Benchmark.realtime { iterations.times { |
|
103
|
+
result = Benchmark.realtime { iterations.times { |_i| klass.run(MiniTest::CompositeReporter.new) } }
|
98
104
|
MiniTest::Runnable.runnables.delete(klass)
|
99
105
|
result
|
100
106
|
else
|
101
107
|
MiniTest::Unit.output = StringIO.new
|
102
|
-
Benchmark.realtime { iterations.times { |
|
108
|
+
Benchmark.realtime { iterations.times { |_i| MiniTest::Unit.new.run([klass]) } }
|
103
109
|
end
|
104
110
|
else
|
105
111
|
load 'test/unit/ui/console/testrunner.rb' unless defined?(Test::Unit::UI::Console::TestRunner)
|
106
|
-
unless
|
112
|
+
unless @silent_option
|
107
113
|
begin
|
108
114
|
load 'test/unit/ui/console/outputlevel.rb' unless defined?(Test::Unit::UI::Console::OutputLevel::SILENT)
|
109
|
-
|
115
|
+
@silent_option = { :output_level => Test::Unit::UI::Console::OutputLevel::SILENT }
|
110
116
|
rescue LoadError
|
111
|
-
|
117
|
+
@silent_option = Test::Unit::UI::SILENT
|
112
118
|
end
|
113
119
|
end
|
114
|
-
Benchmark.realtime { iterations.times { Test::Unit::UI::Console::TestRunner.run(klass,
|
120
|
+
Benchmark.realtime { iterations.times { Test::Unit::UI::Console::TestRunner.run(klass, @silent_option) } }
|
115
121
|
end
|
116
122
|
end
|
123
|
+
# rubocop:enable Metrics/CyclomaticComplexity,Metrics/PerceivedComplexity
|
117
124
|
|
118
|
-
if ENV[
|
125
|
+
if ENV['MOCHA_GENERATE_DOCS']
|
119
126
|
require 'yard'
|
120
127
|
|
121
128
|
desc 'Remove generated documentation'
|
122
129
|
task 'clobber_yardoc' do
|
123
|
-
`rm -rf ./
|
130
|
+
`rm -rf ./docs`
|
124
131
|
end
|
125
132
|
|
126
133
|
task 'docs_environment' do
|
@@ -131,19 +138,18 @@ if ENV["MOCHA_GENERATE_DOCS"]
|
|
131
138
|
|
132
139
|
desc 'Generate documentation'
|
133
140
|
YARD::Rake::YardocTask.new('yardoc' => 'docs_environment') do |task|
|
134
|
-
task.options = [
|
141
|
+
task.options = [
|
142
|
+
'--title', "Mocha #{Mocha::VERSION}",
|
143
|
+
'--output-dir', 'docs'
|
144
|
+
]
|
135
145
|
end
|
136
146
|
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
desc "Publish docs to #{MOCHA_DOCS_HOST}/docs/mocha"
|
141
|
-
task 'publish_docs' => 'generate_docs' do
|
142
|
-
path = "/home/freerange/docs/mocha"
|
143
|
-
system %{ssh #{MOCHA_DOCS_HOST} "sudo rm -fr #{path} && mkdir -p #{path}" && scp -r doc/* #{MOCHA_DOCS_HOST}:#{path}}
|
147
|
+
task 'checkout_docs_cname' do
|
148
|
+
`git checkout docs/CNAME`
|
144
149
|
end
|
145
|
-
end
|
146
150
|
|
147
|
-
|
148
|
-
|
151
|
+
desc 'Generate documentation'
|
152
|
+
task 'generate_docs' => %w[clobber_yardoc yardoc checkout_docs_cname]
|
149
153
|
end
|
154
|
+
|
155
|
+
task 'release' => 'default'
|