counter: fix error for stats 500 on PermissionDenied

This commit is contained in:
2019-05-28 16:38:18 +02:00
parent d466d645e6
commit f0524a9f00
2 changed files with 13 additions and 2 deletions

View File

@ -83,6 +83,17 @@ class CounterTest(TestCase):
)
class CounterStatsTest(TestCase):
def setUp(self):
call_command("populate")
self.counter = Counter.objects.filter(id=2).first()
def test_unothorized_user_fail(self):
# Test with not login user
response = self.client.get(reverse("counter:stats", args=[self.counter.id]))
self.assertTrue(response.status_code == 403)
class BarmanConnectionTest(TestCase):
def setUp(self):
call_command("populate")