(thing1, thing2, *args)
| 59 | |
| 60 | |
| 61 | def assert_equal(thing1, thing2, *args): |
| 62 | if thing1 != thing2 or any(thing1 != arg for arg in args): |
| 63 | raise AssertionError("not(%s)" % " == ".join(str(arg) for arg in (thing1, thing2) + args)) |
| 64 | |
| 65 | |
| 66 | def assert_greater_than(thing1, thing2): |