mirror of
https://github.com/morpheus65535/bazarr
synced 2025-01-03 05:25:28 +00:00
34 lines
870 B
Python
34 lines
870 B
Python
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)
|