Files
nucleus/tests/test_response.py
T

15 lines
351 B
Python
Raw Normal View History

2026-04-21 09:01:50 +03:00
__author__ = 'RemiZOffAlex'
__email__ = 'remizoffalex@mail.ru'
import unittest
2026-06-18 17:58:58 +03:00
from nucleus.response.common import Response
from nucleus.response.stream import ResponseStream
2026-04-21 09:01:50 +03:00
class TestResponse(unittest.TestCase):
def test_response(self):
response = Response('ok')
2026-06-18 17:58:58 +03:00
for item in ResponseStream(response):
print(item)