summaryrefslogtreecommitdiff
path: root/test cases/python3/3 cython/cytest.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2022-04-24 14:47:58 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2022-04-30 11:52:19 +0300
commitcba0f454a254f657995d8294ad4e5637c87caba7 (patch)
treebb218189e6fe98c58c8ce03765cf7f99f6975e41 /test cases/python3/3 cython/cytest.py
parent1695ff83be789e0268062f3bdc7f1e28b19a069a (diff)
downloadmeson-killpy3.tar.gz
Remove deprecated python3 module.killpy3
Diffstat (limited to 'test cases/python3/3 cython/cytest.py')
-rwxr-xr-xtest cases/python3/3 cython/cytest.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/test cases/python3/3 cython/cytest.py b/test cases/python3/3 cython/cytest.py
deleted file mode 100755
index 43443dc66..000000000
--- a/test cases/python3/3 cython/cytest.py
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/env python3
-
-from storer import Storer
-import sys
-
-s = Storer()
-
-if s.get_value() != 0:
- print('Initial value incorrect.')
- sys.exit(1)
-
-s.set_value(42)
-
-if s.get_value() != 42:
- print('Setting value failed.')
- sys.exit(1)
-
-try:
- s.set_value('not a number')
- print('Using wrong argument type did not fail.')
- sys.exit(1)
-except TypeError:
- pass