mocha 2.8.2 → 3.0.0.pre.rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (102) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +67 -3
  3. data/.rubocop_todo.yml +25 -13
  4. data/Gemfile +11 -27
  5. data/README.md +3 -4
  6. data/RELEASE.md +30 -25
  7. data/Rakefile +6 -5
  8. data/gemfiles/Gemfile.minitest.latest +3 -3
  9. data/gemfiles/Gemfile.rubocop +9 -0
  10. data/gemfiles/Gemfile.test-unit.latest +3 -3
  11. data/lib/mocha/any_instance_method.rb +2 -0
  12. data/lib/mocha/any_instance_receiver.rb +20 -0
  13. data/lib/mocha/api.rb +5 -3
  14. data/lib/mocha/argument_iterator.rb +5 -5
  15. data/lib/mocha/backtrace_filter.rb +2 -0
  16. data/lib/mocha/{block_matcher.rb → block_matchers.rb} +2 -0
  17. data/lib/mocha/cardinality.rb +2 -2
  18. data/lib/mocha/central.rb +4 -0
  19. data/lib/mocha/change_state_side_effect.rb +2 -0
  20. data/lib/mocha/class_methods.rb +5 -4
  21. data/lib/mocha/configuration.rb +19 -42
  22. data/lib/mocha/default_name.rb +15 -0
  23. data/lib/mocha/default_receiver.rb +13 -0
  24. data/lib/mocha/deprecation.rb +15 -9
  25. data/lib/mocha/detection/minitest.rb +2 -0
  26. data/lib/mocha/detection/test_unit.rb +4 -1
  27. data/lib/mocha/error_with_filtered_backtrace.rb +2 -0
  28. data/lib/mocha/exception_raiser.rb +3 -0
  29. data/lib/mocha/expectation.rb +59 -25
  30. data/lib/mocha/expectation_error.rb +2 -0
  31. data/lib/mocha/expectation_error_factory.rb +2 -0
  32. data/lib/mocha/expectation_list.rb +2 -0
  33. data/lib/mocha/hooks.rb +2 -0
  34. data/lib/mocha/impersonating_any_instance_name.rb +13 -0
  35. data/lib/mocha/impersonating_name.rb +13 -0
  36. data/lib/mocha/in_state_ordering_constraint.rb +2 -0
  37. data/lib/mocha/inspect.rb +13 -10
  38. data/lib/mocha/instance_method.rb +2 -0
  39. data/lib/mocha/integration/assertion_counter.rb +2 -0
  40. data/lib/mocha/integration/minitest/adapter.rb +4 -3
  41. data/lib/mocha/integration/minitest.rb +4 -3
  42. data/lib/mocha/integration/monkey_patcher.rb +4 -2
  43. data/lib/mocha/integration/test_unit/adapter.rb +3 -0
  44. data/lib/mocha/integration/test_unit.rb +4 -3
  45. data/lib/mocha/invocation.rb +9 -6
  46. data/lib/mocha/logger.rb +2 -0
  47. data/lib/mocha/macos_version.rb +2 -0
  48. data/lib/mocha/method_matcher.rb +2 -0
  49. data/lib/mocha/minitest.rb +2 -1
  50. data/lib/mocha/mock.rb +8 -8
  51. data/lib/mocha/mockery.rb +16 -6
  52. data/lib/mocha/name.rb +13 -0
  53. data/lib/mocha/not_initialized_error.rb +2 -0
  54. data/lib/mocha/object_methods.rb +7 -5
  55. data/lib/mocha/object_receiver.rb +20 -0
  56. data/lib/mocha/parameter_matchers/all_of.rb +23 -28
  57. data/lib/mocha/parameter_matchers/any_of.rb +29 -34
  58. data/lib/mocha/parameter_matchers/any_parameters.rb +21 -26
  59. data/lib/mocha/parameter_matchers/anything.rb +18 -23
  60. data/lib/mocha/parameter_matchers/base.rb +5 -23
  61. data/lib/mocha/parameter_matchers/equals.rb +24 -29
  62. data/lib/mocha/parameter_matchers/equivalent_uri.rb +23 -28
  63. data/lib/mocha/parameter_matchers/has_entries.rb +24 -29
  64. data/lib/mocha/parameter_matchers/has_entry.rb +68 -70
  65. data/lib/mocha/parameter_matchers/has_key.rb +25 -29
  66. data/lib/mocha/parameter_matchers/has_keys.rb +25 -30
  67. data/lib/mocha/parameter_matchers/has_value.rb +25 -29
  68. data/lib/mocha/parameter_matchers/includes.rb +65 -73
  69. data/lib/mocha/parameter_matchers/instance_methods.rb +5 -3
  70. data/lib/mocha/parameter_matchers/instance_of.rb +24 -29
  71. data/lib/mocha/parameter_matchers/is_a.rb +25 -30
  72. data/lib/mocha/parameter_matchers/kind_of.rb +24 -29
  73. data/lib/mocha/parameter_matchers/not.rb +24 -29
  74. data/lib/mocha/parameter_matchers/optionally.rb +35 -40
  75. data/lib/mocha/parameter_matchers/positional_or_keyword_hash.rb +39 -19
  76. data/lib/mocha/parameter_matchers/regexp_matches.rb +25 -29
  77. data/lib/mocha/parameter_matchers/responds_with.rb +48 -53
  78. data/lib/mocha/parameter_matchers/yaml_equivalent.rb +23 -28
  79. data/lib/mocha/parameter_matchers.rb +4 -6
  80. data/lib/mocha/parameters_matcher.rb +9 -1
  81. data/lib/mocha/raised_exception.rb +2 -0
  82. data/lib/mocha/return_values.rb +2 -0
  83. data/lib/mocha/ruby_version.rb +3 -0
  84. data/lib/mocha/sequence.rb +2 -0
  85. data/lib/mocha/single_return_value.rb +1 -1
  86. data/lib/mocha/state_machine.rb +2 -0
  87. data/lib/mocha/stubbed_method.rb +9 -2
  88. data/lib/mocha/stubbing_error.rb +2 -0
  89. data/lib/mocha/test_unit.rb +2 -1
  90. data/lib/mocha/thrower.rb +2 -0
  91. data/lib/mocha/thrown_object.rb +2 -0
  92. data/lib/mocha/version.rb +3 -1
  93. data/lib/mocha/yield_parameters.rb +2 -0
  94. data/lib/mocha.rb +5 -0
  95. data/mocha.gemspec +10 -4
  96. metadata +17 -16
  97. data/lib/mocha/debug.rb +0 -9
  98. data/lib/mocha/integration/minitest/exception_translation.rb +0 -14
  99. data/lib/mocha/is_a.rb +0 -7
  100. data/lib/mocha/names.rb +0 -43
  101. data/lib/mocha/parameter_matchers/deprecations.rb +0 -44
  102. data/lib/mocha/receivers.rb +0 -45
@@ -1,4 +1,5 @@
1
- require 'mocha/debug'
1
+ # frozen_string_literal: true
2
+
2
3
  require 'mocha/detection/test_unit'
3
4
  require 'mocha/integration/test_unit/adapter'
4
5
 
@@ -10,14 +11,14 @@ module Mocha
10
11
  return false unless target
11
12
 
12
13
  test_unit_version = Gem::Version.new(Detection::TestUnit.version)
13
- Debug.puts "Detected Test::Unit version: #{test_unit_version}"
14
+ warn "Detected Test::Unit version: #{test_unit_version}" if $DEBUG
14
15
 
15
16
  unless TestUnit::Adapter.applicable_to?(test_unit_version)
16
17
  raise 'Versions of test-unit earlier than v2.5.1 are not supported.'
17
18
  end
18
19
 
19
20
  unless target < TestUnit::Adapter
20
- Debug.puts "Applying #{TestUnit::Adapter.description}"
21
+ warn "Applying #{TestUnit::Adapter.description}" if $DEBUG
21
22
  target.send(:include, TestUnit::Adapter)
22
23
  end
23
24
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'mocha/parameters_matcher'
2
4
  require 'mocha/raised_exception'
3
5
  require 'mocha/return_values'
@@ -21,6 +23,7 @@ module Mocha
21
23
  yield_parameters.next_invocation.each do |yield_args|
22
24
  @yields << ParametersMatcher.new(yield_args)
23
25
  raise LocalJumpError unless @block
26
+
24
27
  @block.call(*yield_args)
25
28
  end
26
29
  return_values.next(self)
@@ -43,9 +46,9 @@ module Mocha
43
46
  end
44
47
 
45
48
  def call_description
46
- description = "#{@mock.mocha_inspect}.#{@method_name}#{argument_description}"
47
- description << ' { ... }' unless @block.nil?
48
- description
49
+ strings = ["#{@mock.mocha_inspect}.#{@method_name}#{argument_description}"]
50
+ strings << ' { ... }' unless @block.nil?
51
+ strings.join
49
52
  end
50
53
 
51
54
  def short_call_description
@@ -53,9 +56,9 @@ module Mocha
53
56
  end
54
57
 
55
58
  def result_description
56
- desc = "# => #{@result.mocha_inspect}"
57
- desc << " after yielding #{@yields.map(&:mocha_inspect).join(', then ')}" if @yields.any?
58
- desc
59
+ strings = ["# => #{@result.mocha_inspect}"]
60
+ strings << " after yielding #{@yields.map(&:mocha_inspect).join(', then ')}" if @yields.any?
61
+ strings.join
59
62
  end
60
63
 
61
64
  def full_description
data/lib/mocha/logger.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Mocha
2
4
  class Logger
3
5
  def initialize(io)
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Mocha
2
4
  MACOS = /darwin/.match(RUBY_PLATFORM)
3
5
  MACOS_VERSION = MACOS && /darwin(\d+)/.match(RUBY_PLATFORM)[1].to_i
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Mocha
2
4
  class MethodMatcher
3
5
  attr_reader :expected_method_name
@@ -1,4 +1,5 @@
1
- require 'mocha/ruby_version'
1
+ # frozen_string_literal: true
2
+
2
3
  require 'mocha/integration/minitest'
3
4
 
4
5
  unless Mocha::Integration::Minitest.activate
data/lib/mocha/mock.rb CHANGED
@@ -1,9 +1,11 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'ruby2_keywords'
2
4
  require 'mocha/expectation'
3
5
  require 'mocha/expectation_list'
4
6
  require 'mocha/invocation'
5
- require 'mocha/names'
6
- require 'mocha/receivers'
7
+ require 'mocha/default_name'
8
+ require 'mocha/default_receiver'
7
9
  require 'mocha/method_matcher'
8
10
  require 'mocha/parameters_matcher'
9
11
  require 'mocha/argument_iterator'
@@ -114,8 +116,7 @@ module Mocha
114
116
  def expects(method_name_or_hash, backtrace = nil)
115
117
  expectation = nil
116
118
  iterator = ArgumentIterator.new(method_name_or_hash)
117
- iterator.each do |*args|
118
- method_name = args.shift
119
+ iterator.each do |method_name, *args|
119
120
  ensure_method_not_already_defined(method_name)
120
121
  expectation = Expectation.new(self, method_name, backtrace)
121
122
  expectation.in_sequence(@mockery.sequences.last) if @mockery.sequences.any?
@@ -153,8 +154,7 @@ module Mocha
153
154
  def stubs(method_name_or_hash, backtrace = nil)
154
155
  expectation = nil
155
156
  iterator = ArgumentIterator.new(method_name_or_hash)
156
- iterator.each do |*args|
157
- method_name = args.shift
157
+ iterator.each do |method_name, *args|
158
158
  ensure_method_not_already_defined(method_name)
159
159
  expectation = Expectation.new(self, method_name, backtrace)
160
160
  expectation.at_least(0)
@@ -315,13 +315,13 @@ module Mocha
315
315
  end
316
316
 
317
317
  # @private
318
- def method_missing(symbol, *arguments, &block) # rubocop:disable Style/MethodMissingSuper
318
+ def method_missing(symbol, *arguments, &block)
319
319
  handle_method_call(symbol, arguments, block)
320
320
  end
321
321
  ruby2_keywords(:method_missing)
322
322
 
323
323
  # @private
324
- def handle_method_call(symbol, arguments, block) # rubocop:disable Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
324
+ def handle_method_call(symbol, arguments, block)
325
325
  check_expiry
326
326
  check_responder_responds_to(symbol)
327
327
  invocation = Invocation.new(self, symbol, arguments, block)
data/lib/mocha/mockery.rb CHANGED
@@ -1,7 +1,12 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'mocha/central'
2
4
  require 'mocha/mock'
3
- require 'mocha/names'
4
- require 'mocha/receivers'
5
+ require 'mocha/name'
6
+ require 'mocha/impersonating_name'
7
+ require 'mocha/impersonating_any_instance_name'
8
+ require 'mocha/object_receiver'
9
+ require 'mocha/any_instance_receiver'
5
10
  require 'mocha/state_machine'
6
11
  require 'mocha/logger'
7
12
  require 'mocha/configuration'
@@ -49,9 +54,13 @@ module Mocha
49
54
  end
50
55
 
51
56
  def teardown(origin = nil)
57
+ if @instances.nil?
58
+ raise NotInitializedError, 'Mocha::Mockery.teardown called before Mocha::Mockery.setup'
59
+ end
60
+
52
61
  instance.teardown(origin)
53
62
  ensure
54
- @instances.pop
63
+ @instances.pop unless @instances.nil?
55
64
  end
56
65
  end
57
66
 
@@ -124,12 +133,11 @@ module Mocha
124
133
  def on_stubbing(object, method)
125
134
  signature_proc = lambda { "#{object.mocha_inspect}.#{method}" }
126
135
  check(:stubbing_non_existent_method, 'non-existent method', signature_proc) do
127
- !(object.stubba_class.__method_exists__?(method, true) || object.respond_to?(method))
136
+ !(object.stubba_class.__method_exists__?(method) || object.respond_to?(method))
128
137
  end
129
138
  check(:stubbing_non_public_method, 'non-public method', signature_proc) do
130
- object.stubba_class.__method_exists__?(method, false)
139
+ object.stubba_class.__method_exists__?(method, include_public_methods: false)
131
140
  end
132
- check(:stubbing_method_on_nil, 'method on nil', signature_proc) { object.nil? }
133
141
  check(:stubbing_method_on_non_mock_object, 'method on non-mock object', signature_proc)
134
142
  end
135
143
 
@@ -144,9 +152,11 @@ module Mocha
144
152
  def check(action, description, signature_proc, backtrace = caller)
145
153
  treatment = Mocha.configuration.send(action)
146
154
  return if (treatment == :allow) || (block_given? && !yield)
155
+
147
156
  method_signature = signature_proc.call
148
157
  message = "stubbing #{description}: #{method_signature}"
149
158
  raise StubbingError.new(message, backtrace) if treatment == :prevent
159
+
150
160
  logger.warn(message) if treatment == :warn
151
161
  end
152
162
 
data/lib/mocha/name.rb ADDED
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mocha
4
+ class Name
5
+ def initialize(name)
6
+ @name = name.to_s
7
+ end
8
+
9
+ def mocha_inspect
10
+ "#<Mock:#{@name}>"
11
+ end
12
+ end
13
+ end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'mocha/error_with_filtered_backtrace'
2
4
 
3
5
  module Mocha
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'mocha/mockery'
2
4
  require 'mocha/instance_method'
3
5
  require 'mocha/argument_iterator'
@@ -12,7 +14,7 @@ module Mocha
12
14
  alias_method :_method, :method
13
15
 
14
16
  # @private
15
- def mocha(instantiate = true)
17
+ def mocha(instantiate: true)
16
18
  if instantiate
17
19
  @mocha ||= Mocha::Mockery.instance.mock_impersonating(self)
18
20
  else
@@ -75,11 +77,11 @@ module Mocha
75
77
  if frozen?
76
78
  raise StubbingError.new("can't stub method on frozen object: #{mocha_inspect}", caller)
77
79
  end
80
+
78
81
  expectation = nil
79
82
  mockery = Mocha::Mockery.instance
80
83
  iterator = ArgumentIterator.new(expected_methods_vs_return_values)
81
- iterator.each do |*args|
82
- method_name = args.shift
84
+ iterator.each do |method_name, *args|
83
85
  mockery.on_stubbing(self, method_name)
84
86
  method = stubba_method.new(stubba_object, method_name)
85
87
  mockery.stubba.stub(method)
@@ -121,11 +123,11 @@ module Mocha
121
123
  if frozen?
122
124
  raise StubbingError.new("can't stub method on frozen object: #{mocha_inspect}", caller)
123
125
  end
126
+
124
127
  expectation = nil
125
128
  mockery = Mocha::Mockery.instance
126
129
  iterator = ArgumentIterator.new(stubbed_methods_vs_return_values)
127
- iterator.each do |*args|
128
- method_name = args.shift
130
+ iterator.each do |method_name, *args|
129
131
  mockery.on_stubbing(self, method_name)
130
132
  method = stubba_method.new(stubba_object, method_name)
131
133
  mockery.stubba.stub(method)
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mocha
4
+ class ObjectReceiver
5
+ def initialize(object)
6
+ @object = object
7
+ end
8
+
9
+ def mocks
10
+ object = @object
11
+ mocks = []
12
+ while object
13
+ mocha = object.mocha(instantiate: false)
14
+ mocks << mocha if mocha
15
+ object = object.is_a?(Class) ? object.superclass : nil
16
+ end
17
+ mocks
18
+ end
19
+ end
20
+ end
@@ -1,37 +1,34 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'mocha/parameter_matchers/base'
2
- require 'mocha/parameter_matchers/deprecations'
3
4
 
4
5
  module Mocha
5
6
  module ParameterMatchers
6
- module Methods
7
- # Matches if all +matchers+ match.
8
- #
9
- # @param [*Array<BaseMethods>] matchers parameter matchers.
10
- # @return [AllOf] parameter matcher.
11
- #
12
- # @see Expectation#with
13
- #
14
- # @example All parameter matchers match.
15
- # object = mock()
16
- # object.expects(:method_1).with(all_of(includes(1), includes(3)))
17
- # object.method_1([1, 3])
18
- # # no error raised
19
- #
20
- # @example One of the parameter matchers does not match.
21
- # object = mock()
22
- # object.expects(:method_1).with(all_of(includes(1), includes(3)))
23
- # object.method_1([1, 2])
24
- # # error raised, because method_1 was not called with object including 1 and 3
25
- def all_of(*matchers)
26
- AllOf.new(*matchers)
27
- end
7
+ # Matches if all +matchers+ match.
8
+ #
9
+ # @param [*Array<Base>] matchers parameter matchers.
10
+ # @return [AllOf] parameter matcher.
11
+ #
12
+ # @see Expectation#with
13
+ #
14
+ # @example All parameter matchers match.
15
+ # object = mock()
16
+ # object.expects(:method_1).with(all_of(includes(1), includes(3)))
17
+ # object.method_1([1, 3])
18
+ # # no error raised
19
+ #
20
+ # @example One of the parameter matchers does not match.
21
+ # object = mock()
22
+ # object.expects(:method_1).with(all_of(includes(1), includes(3)))
23
+ # object.method_1([1, 2])
24
+ # # error raised, because method_1 was not called with object including 1 and 3
25
+ def all_of(*matchers)
26
+ AllOf.new(*matchers)
28
27
  end
29
28
 
30
- define_deprecated_matcher_method(:all_of)
31
-
32
29
  # Parameter matcher which combines a number of other matchers using a logical AND.
33
30
  class AllOf
34
- include BaseMethods
31
+ include Base
35
32
 
36
33
  # @private
37
34
  def initialize(*matchers)
@@ -49,7 +46,5 @@ module Mocha
49
46
  "all_of(#{@matchers.map(&:mocha_inspect).join(', ')})"
50
47
  end
51
48
  end
52
-
53
- provide_deprecated_access_to(:AllOf)
54
49
  end
55
50
  end
@@ -1,43 +1,40 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'mocha/parameter_matchers/base'
2
- require 'mocha/parameter_matchers/deprecations'
3
4
 
4
5
  module Mocha
5
6
  module ParameterMatchers
6
- module Methods
7
- # Matches if any +matchers+ match.
8
- #
9
- # @param [*Array<BaseMethods>] matchers parameter matchers.
10
- # @return [AnyOf] parameter matcher.
11
- #
12
- # @see Expectation#with
13
- #
14
- # @example One parameter matcher matches.
15
- # object = mock()
16
- # object.expects(:method_1).with(any_of(1, 3))
17
- # object.method_1(1)
18
- # # no error raised
19
- #
20
- # @example The other parameter matcher matches.
21
- # object = mock()
22
- # object.expects(:method_1).with(any_of(1, 3))
23
- # object.method_1(3)
24
- # # no error raised
25
- #
26
- # @example Neither parameter matcher matches.
27
- # object = mock()
28
- # object.expects(:method_1).with(any_of(1, 3))
29
- # object.method_1(2)
30
- # # error raised, because method_1 was not called with 1 or 3
31
- def any_of(*matchers)
32
- AnyOf.new(*matchers)
33
- end
7
+ # Matches if any +matchers+ match.
8
+ #
9
+ # @param [*Array<Base>] matchers parameter matchers.
10
+ # @return [AnyOf] parameter matcher.
11
+ #
12
+ # @see Expectation#with
13
+ #
14
+ # @example One parameter matcher matches.
15
+ # object = mock()
16
+ # object.expects(:method_1).with(any_of(1, 3))
17
+ # object.method_1(1)
18
+ # # no error raised
19
+ #
20
+ # @example The other parameter matcher matches.
21
+ # object = mock()
22
+ # object.expects(:method_1).with(any_of(1, 3))
23
+ # object.method_1(3)
24
+ # # no error raised
25
+ #
26
+ # @example Neither parameter matcher matches.
27
+ # object = mock()
28
+ # object.expects(:method_1).with(any_of(1, 3))
29
+ # object.method_1(2)
30
+ # # error raised, because method_1 was not called with 1 or 3
31
+ def any_of(*matchers)
32
+ AnyOf.new(*matchers)
34
33
  end
35
34
 
36
- define_deprecated_matcher_method(:any_of)
37
-
38
35
  # Parameter matcher which combines a number of other matchers using a logical OR.
39
36
  class AnyOf
40
- include BaseMethods
37
+ include Base
41
38
 
42
39
  # @private
43
40
  def initialize(*matchers)
@@ -55,7 +52,5 @@ module Mocha
55
52
  "any_of(#{@matchers.map(&:mocha_inspect).join(', ')})"
56
53
  end
57
54
  end
58
-
59
- provide_deprecated_access_to(:AnyOf)
60
55
  end
61
56
  end
@@ -1,35 +1,32 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'mocha/parameter_matchers/base'
2
- require 'mocha/parameter_matchers/deprecations'
3
4
 
4
5
  module Mocha
5
6
  module ParameterMatchers
6
- module Methods
7
- # Matches any parameters. This is used as the default for a newly built expectation.
8
- #
9
- # @return [AnyParameters] parameter matcher.
10
- #
11
- # @see Expectation#with
12
- #
13
- # @example Any parameters will match.
14
- # object = mock()
15
- # object.expects(:method_1).with(any_parameters)
16
- # object.method_1(1, 2, 3, 4)
17
- # # no error raised
18
- #
19
- # object = mock()
20
- # object.expects(:method_1).with(any_parameters)
21
- # object.method_1(5, 6, 7, 8, 9, 0)
22
- # # no error raised
23
- def any_parameters
24
- AnyParameters.new
25
- end
7
+ # Matches any parameters. This is used as the default for a newly built expectation.
8
+ #
9
+ # @return [AnyParameters] parameter matcher.
10
+ #
11
+ # @see Expectation#with
12
+ #
13
+ # @example Any parameters will match.
14
+ # object = mock()
15
+ # object.expects(:method_1).with(any_parameters)
16
+ # object.method_1(1, 2, 3, 4)
17
+ # # no error raised
18
+ #
19
+ # object = mock()
20
+ # object.expects(:method_1).with(any_parameters)
21
+ # object.method_1(5, 6, 7, 8, 9, 0)
22
+ # # no error raised
23
+ def any_parameters
24
+ AnyParameters.new
26
25
  end
27
26
 
28
- define_deprecated_matcher_method(:any_parameters)
29
-
30
27
  # Parameter matcher which always matches whatever the parameters.
31
28
  class AnyParameters
32
- include BaseMethods
29
+ include Base
33
30
 
34
31
  # @private
35
32
  def matches?(available_parameters)
@@ -44,7 +41,5 @@ module Mocha
44
41
  'any_parameters'
45
42
  end
46
43
  end
47
-
48
- provide_deprecated_access_to(:AnyParameters)
49
44
  end
50
45
  end
@@ -1,32 +1,29 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'mocha/parameter_matchers/base'
2
- require 'mocha/parameter_matchers/deprecations'
3
4
 
4
5
  module Mocha
5
6
  module ParameterMatchers
6
- module Methods
7
- # Matches any object.
8
- #
9
- # @return [Anything] parameter matcher.
10
- #
11
- # @see Expectation#with
12
- #
13
- # @example Any object will match.
14
- # object = mock()
15
- # object.expects(:method_1).with(anything)
16
- # object.method_1('foo')
17
- # object.method_1(789)
18
- # object.method_1(:bar)
19
- # # no error raised
20
- def anything
21
- Anything.new
22
- end
7
+ # Matches any object.
8
+ #
9
+ # @return [Anything] parameter matcher.
10
+ #
11
+ # @see Expectation#with
12
+ #
13
+ # @example Any object will match.
14
+ # object = mock()
15
+ # object.expects(:method_1).with(anything)
16
+ # object.method_1('foo')
17
+ # object.method_1(789)
18
+ # object.method_1(:bar)
19
+ # # no error raised
20
+ def anything
21
+ Anything.new
23
22
  end
24
23
 
25
- define_deprecated_matcher_method(:anything)
26
-
27
24
  # Parameter matcher which always matches a single parameter.
28
25
  class Anything
29
- include BaseMethods
26
+ include Base
30
27
 
31
28
  # @private
32
29
  def matches?(available_parameters)
@@ -39,7 +36,5 @@ module Mocha
39
36
  'anything'
40
37
  end
41
38
  end
42
-
43
- provide_deprecated_access_to(:Anything)
44
39
  end
45
40
  end
@@ -1,17 +1,16 @@
1
- require 'mocha/deprecation'
2
- require 'mocha/parameter_matchers/deprecations'
1
+ # frozen_string_literal: true
3
2
 
4
3
  module Mocha
5
4
  module ParameterMatchers
6
- # @abstract Include and implement +#matches?+ and +#mocha_inspect+ to define a custom matcher. Also add a suitably named instance method to {Methods} to build an instance of the new matcher c.f. {Methods#equals}.
7
- module BaseMethods
5
+ # @abstract Include and implement +#matches?+ and +#mocha_inspect+ to define a custom matcher. Also add a suitably named instance method to {ParameterMatchers} to build an instance of the new matcher c.f. {#equals}.
6
+ module Base
8
7
  # A shorthand way of combining two matchers when both must match.
9
8
  #
10
9
  # Returns a new {AllOf} parameter matcher combining two matchers using a logical AND.
11
10
  #
12
11
  # This shorthand will not work with an implicit equals match. Instead, an explicit {Equals} matcher should be used.
13
12
  #
14
- # @param [BaseMethods] other parameter matcher.
13
+ # @param [Base] other parameter matcher.
15
14
  # @return [AllOf] parameter matcher.
16
15
  #
17
16
  # @see Expectation#with
@@ -35,7 +34,7 @@ module Mocha
35
34
  #
36
35
  # This shorthand will not work with an implicit equals match. Instead, an explicit {Equals} matcher should be used.
37
36
  #
38
- # @param [BaseMethods] other parameter matcher.
37
+ # @param [Base] other parameter matcher.
39
38
  # @return [AnyOf] parameter matcher.
40
39
  #
41
40
  # @see Expectation#with
@@ -59,22 +58,5 @@ module Mocha
59
58
  AnyOf.new(self, other)
60
59
  end
61
60
  end
62
-
63
- provide_deprecated_access_to(:BaseMethods)
64
-
65
- # @deprecated Include +BaseMethods+ module instead.
66
- class Base
67
- include BaseMethods
68
-
69
- # @private
70
- def self.inherited(subclass)
71
- super
72
- Deprecation.warning(
73
- "Include #{BaseMethods} module into #{subclass} instead of inheriting from #{self}."
74
- )
75
- end
76
- end
77
-
78
- provide_deprecated_access_to(:Base)
79
61
  end
80
62
  end