diff options
author | Daniel Schadt <kingdread@gmx.de> | 2022-07-09 19:30:18 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2022-07-09 19:30:18 +0200 |
commit | 8cdf665c0c8c83abf6bf3ccdc4c594e039e59107 (patch) | |
tree | b60234bc0d10aadc44fa1d743131a5e4869a30b2 /tests/integration/test_smoke.py | |
parent | cd9d1b1c31cfce7ffb2563fca1bea5907d575eee (diff) | |
download | fietsboek-8cdf665c0c8c83abf6bf3ccdc4c594e039e59107.tar.gz fietsboek-8cdf665c0c8c83abf6bf3ccdc4c594e039e59107.tar.bz2 fietsboek-8cdf665c0c8c83abf6bf3ccdc4c594e039e59107.zip |
add tests for the login form
Diffstat (limited to 'tests/integration/test_smoke.py')
-rw-r--r-- | tests/integration/test_smoke.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/integration/test_smoke.py b/tests/integration/test_smoke.py new file mode 100644 index 0000000..1288da0 --- /dev/null +++ b/tests/integration/test_smoke.py @@ -0,0 +1,4 @@ +def test_home(testapp): + res = testapp.get("/") + assert res.status_code == 200 + assert b'<h1>Home</h1>' in res.body |