Files
nucleus/tests/test_response.py
T
RemiZOffAlex fa9001488e
Тестирование ядра / Tester (push) Failing after 2s
Update response
2026-04-21 09:01:50 +03:00

13 lines
269 B
Python

__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())