summaryrefslogtreecommitdiff
path: root/test cases/unit/37 python extmodule/blaster.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-08-18 23:58:49 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2018-08-19 12:39:46 +0300
commit972535a6ac9fb1f9611c1b68293f7df88ec1b1f7 (patch)
treeed17817547da3e20c5c3080075c8924c24f6b3f9 /test cases/unit/37 python extmodule/blaster.py
parentedf901431272e5bb348e265113179c337f65a881 (diff)
downloadmeson-972535a6ac9fb1f9611c1b68293f7df88ec1b1f7.tar.gz
Condense test dirs.
Diffstat (limited to 'test cases/unit/37 python extmodule/blaster.py')
-rwxr-xr-xtest cases/unit/37 python extmodule/blaster.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/test cases/unit/37 python extmodule/blaster.py b/test cases/unit/37 python extmodule/blaster.py
deleted file mode 100755
index 163b6d426..000000000
--- a/test cases/unit/37 python extmodule/blaster.py
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env python
-
-import sys
-import tachyon
-
-result = tachyon.phaserize('shoot')
-
-if not isinstance(result, int):
- print('Returned result not an integer.')
- sys.exit(1)
-
-if result != 1:
- print('Returned result {} is not 1.'.format(result))
- sys.exit(1)