aboutsummaryrefslogtreecommitdiff
path: root/tests/test_views.py
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2022-06-28 14:04:27 +0200
committerDaniel Schadt <kingdread@gmx.de>2022-06-28 14:04:27 +0200
commit77ac79f1b29e8b07c74852e3c5be83abf6424c7a (patch)
treee5653ce152d39c066423d3dec9992c4e225a243f /tests/test_views.py
downloadfietsboek-77ac79f1b29e8b07c74852e3c5be83abf6424c7a.tar.gz
fietsboek-77ac79f1b29e8b07c74852e3c5be83abf6424c7a.tar.bz2
fietsboek-77ac79f1b29e8b07c74852e3c5be83abf6424c7a.zip
Initial commit
Diffstat (limited to 'tests/test_views.py')
-rw-r--r--tests/test_views.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/test_views.py b/tests/test_views.py
new file mode 100644
index 0000000..08347b6
--- /dev/null
+++ b/tests/test_views.py
@@ -0,0 +1,23 @@
+from fietsboek import models
+from fietsboek.views.default import my_view
+from fietsboek.views.notfound import notfound_view
+
+
+def test_my_view_failure(app_request):
+ info = my_view(app_request)
+ assert info.status_int == 500
+
+def test_my_view_success(app_request, dbsession):
+ model = models.MyModel(name='one', value=55)
+ dbsession.add(model)
+ dbsession.flush()
+
+ info = my_view(app_request)
+ assert app_request.response.status_int == 200
+ assert info['one'].name == 'one'
+ assert info['project'] == 'fietsboek'
+
+def test_notfound_view(app_request):
+ info = notfound_view(app_request)
+ assert app_request.response.status_int == 404
+ assert info == {}