Sha256: f633cef9877266ad97d039b6070f4fcecd790b3a9502cf36ef3ebe6a29ad5d8e
Contents?: true
Size: 353 Bytes
Versions: 28
Compression:
Stored size: 353 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.to_sym end def mocha_inspect "#{@expected_method_name}" end end end
Version data entries
28 entries across 24 versions & 5 rubygems