Sha256: 3b5ab0c347acfc847a404c0d9d1ef3280dc9e797a755ff14b0097c7b50c71972
Contents?: true
Size: 346 Bytes
Versions: 33
Compression:
Stored size: 346 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
33 entries across 28 versions & 3 rubygems