We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27e6d5e commit 01a60d3Copy full SHA for 01a60d3
end2end/flask_mongo_test.py
@@ -12,11 +12,15 @@ def test_create_dog_fw():
12
dog_name = "bobby_tables"
13
pswd = "bobby123"
14
res = requests.post(post_url_fw, data={'dog_name': dog_name, 'pswd': pswd})
15
+ print(res.text)
16
+ assert "created successfully" in res.text
17
assert res.status_code == 200
18
def test_create_dog_no_fw():
19
20
21
res = requests.post(post_url_nofw, data={'dog_name': dog_name, 'pswd': pswd})
22
23
24
25
26
# Auth dogs with right password:
0 commit comments