Parent

Class/Module Index [+]

Quicksearch

RSpec::Matchers::BuiltIn::YieldWithArgs

Public Class Methods

new(*args) click to toggle source
# File lib/rspec/matchers/built_in/yield.rb, line 184
def initialize(*args)
  @expected = args
end

Public Instance Methods

==(block) click to toggle source
Alias for: matches?
description() click to toggle source
# File lib/rspec/matchers/built_in/yield.rb, line 203
def description
  desc = "yield with args"
  desc << "(" + @expected.map { |e| e.inspect }.join(", ") + ")" unless @expected.empty?
  desc
end
failure_message_for_should() click to toggle source
# File lib/rspec/matchers/built_in/yield.rb, line 195
def failure_message_for_should
  "expected given block to yield with arguments, but #{positive_failure_reason}"
end
failure_message_for_should_not() click to toggle source
# File lib/rspec/matchers/built_in/yield.rb, line 199
def failure_message_for_should_not
  "expected given block not to yield with arguments, but #{negative_failure_reason}"
end
matches?(block) click to toggle source
# File lib/rspec/matchers/built_in/yield.rb, line 188
def matches?(block)
  @probe = YieldProbe.probe(block)
  @actual = @probe.single_yield_args
  @probe.yielded_once?(:yield_with_args) && args_match?
end
Also aliased as: ==

[Validate]

Generated with the Darkfish Rdoc Generator 2.