Parent

RSpec::Mocks::ArgumentExpectation

Attributes

args[R]

Public Class Methods

new(*args, &block) click to toggle source
# File lib/rspec/mocks/argument_expectation.rb, line 6
def initialize(*args, &block)
  @args = args
  @matchers_block = block if args.empty?
  @match_any_args = false
  @matchers = nil
  
  if ArgumentMatchers::AnyArgsMatcher === args.first
    @match_any_args = true
  elsif ArgumentMatchers::NoArgsMatcher === args.first
    @matchers = []
  else
    @matchers = args.collect {|arg| matcher_for(arg)}
  end
end

Public Instance Methods

args_match?(*args) click to toggle source
# File lib/rspec/mocks/argument_expectation.rb, line 31
def args_match?(*args)
  match_any_args? || matchers_block_matches?(*args) || matchers_match?(*args)
end
is_matcher?(obj) click to toggle source
# File lib/rspec/mocks/argument_expectation.rb, line 27
def is_matcher?(obj)
  return obj.respond_to?(:matches?) & obj.respond_to?(:description)
end
match_any_args?() click to toggle source
# File lib/rspec/mocks/argument_expectation.rb, line 43
def match_any_args?
  @match_any_args
end
matcher_for(arg) click to toggle source
# File lib/rspec/mocks/argument_expectation.rb, line 21
def matcher_for(arg)
  return ArgumentMatchers::MatcherMatcher.new(arg)   if is_matcher?(arg)
  return ArgumentMatchers::RegexpMatcher.new(arg) if arg.is_a?(Regexp)
  return ArgumentMatchers::EqualityProxy.new(arg)
end
matchers_block_matches?(*args) click to toggle source
# File lib/rspec/mocks/argument_expectation.rb, line 35
def matchers_block_matches?(*args)
  @matchers_block ? @matchers_block.call(*args) : nil
end
matchers_match?(*args) click to toggle source
# File lib/rspec/mocks/argument_expectation.rb, line 39
def matchers_match?(*args)
  @matchers == args
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.