diff options
Diffstat (limited to 'test/test.py')
-rw-r--r-- | test/test.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test.py b/test/test.py new file mode 100644 index 00000000..bf285a47 --- /dev/null +++ b/test/test.py @@ -0,0 +1,5 @@ +"""Workaround to allow running single test cases directly""" +try: + from __init__ import init, Fake, OK, raise_ok +except: + from test import init, Fake, OK, raise_ok |