summaryrefslogtreecommitdiffhomepage
path: root/test/test_http_header.py
diff options
context:
space:
mode:
authorAndrey Zelenkov <zelenkov@nginx.com>2018-11-15 21:26:15 +0300
committerAndrey Zelenkov <zelenkov@nginx.com>2018-11-15 21:26:15 +0300
commiteff760bd2b79f6db1de00a9d871e45ada673c8fc (patch)
tree13a051936dc60d006d19ac0c289d49f06eeac0c7 /test/test_http_header.py
parentc1fd6cb589d08a5feae5399d176e6e02599c823d (diff)
downloadunit-eff760bd2b79f6db1de00a9d871e45ada673c8fc.tar.gz
unit-eff760bd2b79f6db1de00a9d871e45ada673c8fc.tar.bz2
Tests: added command line arguments parsing in tests.
Added the following command line arguments: -d, --detailed: Show detailed output for tests Usage examples: ./test/run.py --detailed python3 test/test_access_log.py --detailed python3 test/test_access_log.py -d TestUnitAccessLog.test_access_log_ipv6 -l, --log: Save unit.log after the test execution Usage examples: ./test/run.py -l python3 test/test_access_log.py -l python3 test/test_access_log.py --log TestUnitAccessLog.test_access_log_ipv6
Diffstat (limited to 'test/test_http_header.py')
-rw-r--r--test/test_http_header.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_http_header.py b/test/test_http_header.py
index 1ca0920d..b850831d 100644
--- a/test/test_http_header.py
+++ b/test/test_http_header.py
@@ -163,4 +163,4 @@ a
self.assertEqual(resp['status'], 200, 'transfer encoding chunked')
if __name__ == '__main__':
- unittest.main()
+ TestUnitHTTPHeader.main()