diff --git a/src/nucleus/domains/http/__init__.py b/src/nucleus/domains/http/__init__.py new file mode 100644 index 0000000..18c55bb --- /dev/null +++ b/src/nucleus/domains/http/__init__.py @@ -0,0 +1,2 @@ +__author__ = 'RemiZOffAlex' +__email__ = 'remizoffalex@mail.ru' diff --git a/tests/test_response.py b/tests/test_response.py new file mode 100644 index 0000000..38c03ef --- /dev/null +++ b/tests/test_response.py @@ -0,0 +1,12 @@ +__author__ = 'RemiZOffAlex' +__email__ = 'remizoffalex@mail.ru' + +import unittest + +from nucleus.domains.http.models.response import Response + + +class TestResponse(unittest.TestCase): + def test_response(self): + response = Response('ok') + print(response())