Class: RSpec::Mocks::TargetBase
- Inherits:
-
Object
- Object
- RSpec::Mocks::TargetBase
- Defined in:
- lib/rspec/mocks/targets.rb
Direct Known Subclasses
AllowanceTarget, AnyInstanceAllowanceTarget, AnyInstanceExpectationTarget, ExpectationTarget
Class Method Summary (collapse)
Instance Method Summary (collapse)
-
- (TargetBase) initialize(target)
constructor
A new instance of TargetBase.
Constructor Details
- (TargetBase) initialize(target)
A new instance of TargetBase
7 8 9 |
# File 'lib/rspec/mocks/targets.rb', line 7 def initialize(target) @target = target end |
Class Method Details
+ (Object) delegate_to(matcher_method, options = {})
11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/rspec/mocks/targets.rb', line 11 def self.delegate_to(matcher_method, = {}) method_name = .fetch(:from) { :to } class_eval(<<-RUBY, __FILE__, __LINE__ + 1) def #{method_name}(matcher, &block) unless Matchers::Receive === matcher raise UnsupportedMatcherError, "only the `receive` matcher is supported " + "with `\#{expression}(...).\#{#{method_name.inspect}}`, but you have provided: \#{matcher}" end matcher.__send__(#{matcher_method.inspect}, @target, &block) end RUBY end |
+ (Object) disallow_negation(method)
25 26 27 28 29 30 31 |
# File 'lib/rspec/mocks/targets.rb', line 25 def self.disallow_negation(method) define_method method do |*args| raise NegationUnsupportedError, "`#{expression}(...).#{method} receive` is not supported since it " + "doesn't really make sense. What would it even mean?" end end |