From fa9001488eefdd537d0da3d6327d73ce44857544 Mon Sep 17 00:00:00 2001 From: RemiZOffAlex Date: Tue, 21 Apr 2026 09:01:50 +0300 Subject: [PATCH] Update response --- src/nucleus/domains/http/__init__.py | 2 ++ tests/test_response.py | 12 ++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 src/nucleus/domains/http/__init__.py create mode 100644 tests/test_response.py 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())