aboutsummaryrefslogtreecommitdiffstats
path: root/tests/shlib_test/test_hello.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/shlib_test/test_hello.py')
-rwxr-xr-xtests/shlib_test/test_hello.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/shlib_test/test_hello.py b/tests/shlib_test/test_hello.py
deleted file mode 100755
index 6da02e31..00000000
--- a/tests/shlib_test/test_hello.py
+++ /dev/null
@@ -1,7 +0,0 @@
-from unittest import TestCase
-
-class HelloWorldTest(TestCase):
- def testHelloMsg(self):
- from hello import hello
- self.assertEqual(hello(), "Hello, world!")
-