diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-11-16 18:05:49 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-12 12:23:19 +0100 |
commit | c99069b594c878263d08512db4ad03d1ebf9ae1a (patch) | |
tree | 11cf75140bc4296fc5c936d4f7b6a3a640d4dbce /archaeological_operations/tests.py | |
parent | 5e1ec0e23d02e146dbe25f42edbe2d097c08577b (diff) | |
download | Ishtar-c99069b594c878263d08512db4ad03d1ebf9ae1a.tar.bz2 Ishtar-c99069b594c878263d08512db4ad03d1ebf9ae1a.zip |
Remove deadcode (old dashboards) - clean css
Diffstat (limited to 'archaeological_operations/tests.py')
-rw-r--r-- | archaeological_operations/tests.py | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/archaeological_operations/tests.py b/archaeological_operations/tests.py index 148ef3ed1..9a5f35d9b 100644 --- a/archaeological_operations/tests.py +++ b/archaeological_operations/tests.py @@ -3390,24 +3390,6 @@ class LabelTest(TestCase, OperationInitTest): f.close() -class DashboardTest(TestCase, OperationInitTest): - fixtures = FILE_FIXTURES - - def setUp(self): - IshtarSiteProfile.objects.get_or_create(slug="default", active=True) - self.username, self.password, self.user = create_superuser() - self.orgas = self.create_orgas(self.user) - self.operations = self.create_operation(self.user, self.orgas[0]) - - def test_dashboard(self): - url = "dashboard-operation" - c = Client() - c.login(username=self.username, password=self.password) - - response = c.get(reverse(url)) - self.assertEqual(response.status_code, 200) - - def create_administrativact(user, operation): act_type, created = models.ActType.objects.get_or_create( txt_idx="act_type_O", intented_to="O" |