Include this module in your test class if you wish to use the eq and any argument matching methods without a prefix. (Otherwise use FlexMock.any and FlexMock.eq(obj).
Return an argument matcher that matches any argument.
# File lib/flexmock/argument_types.rb, line 23 def any ANY end
Return an argument matcher that matches any object that implementes (i.e. responds to) the given method list.
# File lib/flexmock/argument_types.rb, line 48 def ducktype(*methods) DuckMatcher.new(methods) end
Return an argument matcher that only matches things equal to (==) the given object.
# File lib/flexmock/argument_types.rb, line 29 def eq(obj) EqualMatcher.new(obj) end
Return an argument matcher that matches a hash with the given entries.
# File lib/flexmock/argument_types.rb, line 42 def hsh(hash) HashMatcher.new(hash) end
Generated with the Darkfish Rdoc Generator 2.