Match only things that are equal.
# File lib/flexmock/argument_matchers.rb, line 32 def ===(target) @obj == target end
# File lib/flexmock/argument_matchers.rb, line 35 def inspect "==(#{@obj.inspect})" end
# File lib/flexmock/argument_matchers.rb, line 29 def initialize(obj) @obj = obj end