Created
October 6, 2008 19:59
-
-
Save lifo/15124 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[lifo@null mini]$ grep 'def refute' test.rb | |
def refute test, msg = nil | |
def refute_empty obj, msg = nil | |
def refute_equal exp, act, msg = nil | |
def refute_in_delta exp, act, delta = 0.001, msg = nil | |
def refute_in_epsilon a, b, epsilon = 0.001, msg = nil | |
def refute_includes collection, obj, msg = nil | |
def refute_instance_of cls, obj, msg = nil | |
def refute_kind_of cls, obj, msg = nil # TODO: merge with instance_of | |
def refute_match exp, act, msg = nil | |
def refute_nil obj, msg = nil | |
def refute_operator o1, op, o2, msg = nil | |
def refute_respond_to obj, meth, msg = nil | |
def refute_same exp, act, msg = nil |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment