X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/SVBaL.git/blobdiff_plain/5a0935360261561cc0902f5aec5cb3d0ff8207e5..37e62370885ed1ce3c43190741e3355164a4ce18:/python/eh_app/tests.py diff --git a/python/eh_app/tests.py b/python/eh_app/tests.py index ad3c2a1..a2b3b0b 100644 --- a/python/eh_app/tests.py +++ b/python/eh_app/tests.py @@ -61,5 +61,13 @@ class TestViews(TestCase): assert(response.status_code == 302) assert(response.url == '/eh-app/svbal/ehmeldung/erfolg') + def test_kassenbrief_bug_170(self): + client = Client() + client.force_login(self.user) + response = client.get('/eh-app/svbal/kassenbrief/erfolg') + assert(response.status_code == 200) + assert("Erstellung Kassenbrief" in response.content.decode("utf-8")) + + \ No newline at end of file