13 lines
269 B
Python
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())
|