Sha256: af0dc7c993c0a34b06dca40f973dcb56c58ff1a179b0ef2b6773a415dca341b7
Contents?: true
Size: 517 Bytes
Versions: 76
Compression:
Stored size: 517 Bytes
Contents
require 'mspec/matchers/method' class HaveMethodMatcher < MethodMatcher def matches?(mod) @mod = mod @mod.methods(@include_super).include? @method end def failure_message ["Expected #{@mod} to have method '#{@method.to_s}'", "but it does not"] end def negative_failure_message ["Expected #{@mod} NOT to have method '#{@method.to_s}'", "but it does"] end end class Object def have_method(method, include_super=true) HaveMethodMatcher.new method, include_super end end
Version data entries
76 entries across 76 versions & 4 rubygems