summaryrefslogtreecommitdiff
path: root/test cases/python/1 extmodule/blaster.py
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/python/1 extmodule/blaster.py')
-rwxr-xr-xtest cases/python/1 extmodule/blaster.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/test cases/python/1 extmodule/blaster.py b/test cases/python/1 extmodule/blaster.py
deleted file mode 100755
index 163b6d426..000000000
--- a/test cases/python/1 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)