Tests: unit module refactoring.

This commit is contained in:
Andrey Zelenkov
2019-03-28 18:43:13 +03:00
parent 06b9a11494
commit 19eba1730a
33 changed files with 931 additions and 918 deletions

View File

@@ -1,12 +1,12 @@
import time
import socket
import unittest
import unit
from unit.applications.lang.python import TestApplicationPython
class TestUnitSettings(unit.TestUnitApplicationPython):
class TestSettings(TestApplicationPython):
def setUpClass():
unit.TestUnit().check_modules('python')
TestApplicationPython().check_modules('python')
def test_settings_header_read_timeout(self):
self.load('empty')
@@ -226,4 +226,4 @@ Connection: close
if __name__ == '__main__':
TestUnitSettings.main()
TestSettings.main()