diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2019-03-28 18:43:13 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2019-03-28 18:43:13 +0300 |
commit | 19eba1730a1ca839ed62a37f34c204f580d1b653 (patch) | |
tree | e9f54ca64fc7db66e33350826c76ef3814cfa4a0 /test/test_access_log.py | |
parent | 06b9a11494561e309114266bfe3bb001352b596c (diff) | |
download | unit-19eba1730a1ca839ed62a37f34c204f580d1b653.tar.gz unit-19eba1730a1ca839ed62a37f34c204f580d1b653.tar.bz2 |
Tests: unit module refactoring.
Diffstat (limited to 'test/test_access_log.py')
-rw-r--r-- | test/test_access_log.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/test/test_access_log.py b/test/test_access_log.py index e0edd9fc..c58ee26f 100644 --- a/test/test_access_log.py +++ b/test/test_access_log.py @@ -2,13 +2,12 @@ import os import re import time from subprocess import call -import unittest -import unit +from unit.applications.lang.python import TestApplicationPython -class TestUnitAccessLog(unit.TestUnitApplicationPython): +class TestAccessLog(TestApplicationPython): def setUpClass(): - unit.TestUnit().check_modules('python') + TestApplicationPython().check_modules('python') def load(self, script): super().load(script) @@ -340,4 +339,4 @@ Connection: close if __name__ == '__main__': - TestUnitAccessLog.main() + TestAccessLog.main() |