Initial commit
This commit is contained in:
0
tests/__init__.py
Normal file
0
tests/__init__.py
Normal file
9
tests/test_request.py
Normal file
9
tests/test_request.py
Normal 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)
|
||||
|
||||
Reference in New Issue
Block a user