Commit b8b67594 authored by Denis Bilenko's avatar Denis Bilenko

test__examples.py: do not test httpserver.py because it is deleted

parent 2c76027e
...@@ -70,7 +70,6 @@ class BaseTestServer(unittest.TestCase): ...@@ -70,7 +70,6 @@ class BaseTestServer(unittest.TestCase):
class Test_httpserver(BaseTestServer): class Test_httpserver(BaseTestServer):
path = 'httpserver.py'
URL = 'http://localhost:8088' URL = 'http://localhost:8088'
not_found_message = '<h1>Not Found</h1>' not_found_message = '<h1>Not Found</h1>'
...@@ -202,5 +201,8 @@ class TestAllTested(unittest.TestCase): ...@@ -202,5 +201,8 @@ class TestAllTested(unittest.TestCase):
assert not untested, 'The following examples have not been tested: %s' % '\n'.join(untested) assert not untested, 'The following examples have not been tested: %s' % '\n'.join(untested)
del Test_httpserver
if __name__ == '__main__': if __name__ == '__main__':
unittest.main() unittest.main()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment