Public class methods
new
(regexp)
[show source]
# File lib/spec/mocks/argument_matchers.rb, line 34 def initialize(regexp) @regexp = regexp end
Public instance methods
==
(value)
[show source]
# File lib/spec/mocks/argument_matchers.rb, line 38 def ==(value) return value =~ @regexp unless value.is_a?(Regexp) value == @regexp end