You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
870 B
35 lines
870 B
9 months ago
|
import re
|
||
|
import sys
|
||
|
import time
|
||
|
|
||
|
|
||
|
def eq_(a, b, msg=None):
|
||
|
"""Assert a == b, with repr messaging on failure."""
|
||
|
assert a == b, msg or "%r != %r" % (a, b)
|
||
|
|
||
|
|
||
|
def is_(a, b, msg=None):
|
||
|
"""Assert a is b, with repr messaging on failure."""
|
||
|
assert a is b, msg or "%r is not %r" % (a, b)
|
||
|
|
||
|
|
||
|
def ne_(a, b, msg=None):
|
||
|
"""Assert a != b, with repr messaging on failure."""
|
||
|
assert a != b, msg or "%r == %r" % (a, b)
|
||
|
|
||
|
|
||
|
def assert_raises_message(except_cls, msg, callable_, *args, **kwargs):
|
||
|
try:
|
||
|
callable_(*args, **kwargs)
|
||
|
assert False, "Callable did not raise an exception"
|
||
|
except except_cls as e:
|
||
|
assert re.search(msg, str(e)), "%r !~ %s" % (msg, e)
|
||
|
|
||
|
|
||
|
def winsleep():
|
||
|
# sleep a for an amount of time
|
||
|
# sufficient for windows time.time()
|
||
|
# to change
|
||
|
if sys.platform.startswith("win"):
|
||
|
time.sleep(0.001)
|