summaryrefslogtreecommitdiff
path: root/test cases/unit/38 python extmodule/blaster.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-09-05 20:38:22 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2018-09-06 19:09:35 +0300
commit68f669bd2b8cbc8d7e5f1f589bd564092c1665b1 (patch)
tree2a4b61cfe21a8976956521bd033e900776dfa87c /test cases/unit/38 python extmodule/blaster.py
parent289c1bf91992c167e8ec4292f2584a4add7f5485 (diff)
downloadmeson-68f669bd2b8cbc8d7e5f1f589bd564092c1665b1.tar.gz
Condense test dirs.
Diffstat (limited to 'test cases/unit/38 python extmodule/blaster.py')
-rwxr-xr-xtest cases/unit/38 python extmodule/blaster.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/test cases/unit/38 python extmodule/blaster.py b/test cases/unit/38 python extmodule/blaster.py
deleted file mode 100755
index 163b6d426..000000000
--- a/test cases/unit/38 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)