mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 04:54:18 +00:00
importato unittest, rimossa chiamata della funzione che ora avviene grazie al parametro self
This commit is contained in:
parent
aaab6094a9
commit
8c5cb1735c
1 changed files with 16 additions and 14 deletions
|
@ -1,10 +1,12 @@
|
|||
import unittest
|
||||
import requests
|
||||
import json
|
||||
|
||||
auth_code = ""
|
||||
|
||||
|
||||
def test_login():
|
||||
class MyTestCase(unittest.TestCase):
|
||||
def test_login(self):
|
||||
global auth_code
|
||||
r = requests.post('http://localhost:5000/api/login', json={'email': 'admin@admin.com', 'password': 'amogus'})
|
||||
j = json.loads(r.text)
|
||||
|
@ -20,4 +22,4 @@ def test_login():
|
|||
|
||||
|
||||
print("Testing del login")
|
||||
test_login()
|
||||
|
||||
|
|
Loading…
Reference in a new issue