Sha256: 7710bb64696bbf3ef4e16dcc9f19d1e16dbc059c7c692cb40f89fa22e500e618
Contents?: true
Size: 608 Bytes
Versions: 67
Compression:
Stored size: 608 Bytes
Contents
require 'mspec/matchers/method' class HavePublicInstanceMethodMatcher < MethodMatcher def matches?(mod) @mod = mod mod.public_instance_methods(@include_super).include? @method end def failure_message ["Expected #{@mod} to have public instance method '#{@method.to_s}'", "but it does not"] end def negative_failure_message ["Expected #{@mod} NOT to have public instance method '#{@method.to_s}'", "but it does"] end end class Object def have_public_instance_method(method, include_super=true) HavePublicInstanceMethodMatcher.new method, include_super end end
Version data entries
67 entries across 67 versions & 3 rubygems