Initial commit

This commit is contained in:
2022-04-23 19:17:31 +02:00
commit d9ce9fb9a5
8 changed files with 61 additions and 0 deletions

0
tests/__init__.py Normal file
View File

9
tests/test_request.py Normal file
View File

@@ -0,0 +1,9 @@
from unittest import TestCase
from pyprotest import request
class TestRequest(TestCase):
def test_request(self):
resp = request.make_request()
self.assertEqual(resp.status_code, 200)