wip
This commit is contained in:
parent
0f911589ca
commit
5bdfe313de
65 changed files with 2219 additions and 77 deletions
0
core/tickets/tests/__init__.py
Normal file
0
core/tickets/tests/__init__.py
Normal file
0
core/tickets/tests/v2/__init__.py
Normal file
0
core/tickets/tests/v2/__init__.py
Normal file
13
core/tickets/tests/v2/test_tickets.py
Normal file
13
core/tickets/tests/v2/test_tickets.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
from django.test import TestCase, Client
|
||||
|
||||
client = Client()
|
||||
|
||||
|
||||
class IssueApiTest(TestCase):
|
||||
|
||||
def test_issues(self):
|
||||
response = client.get('/api/2/tickets/')
|
||||
self.assertEqual(response.status_code, 200)
|
||||
self.assertEqual(response.json(), [])
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue