diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-02 17:39:01 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-02 17:39:01 -0500 |
commit | 654c26f78a3031c34b81f338d3b6d1a3a87c34da (patch) | |
tree | d3ad32329ea8e0f68652ee853835c3dadc0e4478 /tests/shlib_test/test_hello.py | |
parent | 1ec7cafa9e8c8ea06adc582078444df886896830 (diff) | |
download | external_python_setuptools-654c26f78a3031c34b81f338d3b6d1a3a87c34da.tar.gz external_python_setuptools-654c26f78a3031c34b81f338d3b6d1a3a87c34da.tar.bz2 external_python_setuptools-654c26f78a3031c34b81f338d3b6d1a3a87c34da.zip |
Removing shlib_test (apparently unused and broken).
Diffstat (limited to 'tests/shlib_test/test_hello.py')
-rwxr-xr-x | tests/shlib_test/test_hello.py | 7 |
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!") - |