blob: 1a266353ef355e2be4712daa6f64a4ed3cb0a9c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
def test_incorrect_forms(app, client):
res = client.post("/signin", data={"email": "123"})
assert b"This field is required." in res.data
res = client.post("/signup", data={"email": "123"})
assert b"This field is required." in res.data
res = client.post("/ContactUs", data={"email": 123})
assert b"This field is required." in res.data
def test_contactus(app, client):
res = client.post(
"/ContactUs",
data={
"name": "Test User",
"subject": "Test Contact",
"email": "testemail@email.com",
"body": "Test Message",
},
follow_redirects=True,
)
assert res.status_code == 200
assert b"Wuhu" in res.data
|