]> wagnertech.de Git - SVBaL.git/blobdiff - python/eh_app/tests.py
check.html added
[SVBaL.git] / python / eh_app / tests.py
index ad3c2a1e47df75a35e0b966ae856096c60641346..a2b3b0b4348acdc80732feb31b34456b2f332457 100644 (file)
@@ -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