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