Module FlexMock::ArgumentTypes
In: lib/flexmock/argument_types.rb

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).

Methods

any   ducktype   eq   hsh   on  

Public Instance methods

Return an argument matcher that matches any argument.

Return an argument matcher that matches any object that implementes (i.e. responds to) the given method list.

Return an argument matcher that only matches things equal to (==) the given object.

Return an argument matcher that matches a hash with the given entries.

Return an argument matcher that matches any object, that when passed to the supplied block, will cause the block to return true.

[Validate]