Sha256: a5f425dca7ab89714467876bd503d9f9cc7a9251e65f8941bd6fbb39cd7329bc
Contents?: true
Size: 367 Bytes
Versions: 119
Compression:
Stored size: 367 Bytes
Contents
module Mocha class MethodMatcher attr_reader :expected_method_name def initialize(expected_method_name) @expected_method_name = expected_method_name end def match?(actual_method_name) @expected_method_name == actual_method_name end def mocha_inspect "#{@expected_method_name}" end end end
Version data entries
119 entries across 114 versions & 13 rubygems