Parent

Class/Module Index [+]

Quicksearch

RSpec::Mocks::AndCallOriginalImplementation

Represents an `and_call_original` implementation. @private

Public Class Methods

new(method) click to toggle source
# File lib/rspec/mocks/message_expectation.rb, line 610
def initialize(method)
  @method = method
end

Public Instance Methods

call(*args, &block) click to toggle source
# File lib/rspec/mocks/message_expectation.rb, line 636
def call(*args, &block)
  @method.call(*args, &block)
end
initial_action=(value) click to toggle source
# File lib/rspec/mocks/message_expectation.rb, line 616
def initial_action=(value)
  raise cannot_modify_further_error
end
inner_action() click to toggle source
# File lib/rspec/mocks/message_expectation.rb, line 632
def inner_action
  true
end
inner_action=(value) click to toggle source
# File lib/rspec/mocks/message_expectation.rb, line 620
def inner_action=(value)
  raise cannot_modify_further_error
end
present?() click to toggle source
# File lib/rspec/mocks/message_expectation.rb, line 628
def present?
  true
end
terminal_action=(value) click to toggle source
# File lib/rspec/mocks/message_expectation.rb, line 624
def terminal_action=(value)
  raise cannot_modify_further_error
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.