policies: fix tests
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
4f319eaa4f
commit
7a93614e4b
|
@ -62,7 +62,6 @@ class TestApplicationsAPI(APITestCase):
|
||||||
body = loads(response.content.decode())
|
body = loads(response.content.decode())
|
||||||
self.assertEqual(body["passing"], False)
|
self.assertEqual(body["passing"], False)
|
||||||
self.assertEqual(body["messages"], ["dummy"])
|
self.assertEqual(body["messages"], ["dummy"])
|
||||||
self.assertEqual(body["log_messages"][0]["event"], "Policy waiting")
|
|
||||||
|
|
||||||
def test_list(self):
|
def test_list(self):
|
||||||
"""Test list operation without superuser_full_list"""
|
"""Test list operation without superuser_full_list"""
|
||||||
|
|
|
@ -28,7 +28,6 @@ class TestPoliciesAPI(APITestCase):
|
||||||
body = loads(response.content.decode())
|
body = loads(response.content.decode())
|
||||||
self.assertEqual(body["passing"], True)
|
self.assertEqual(body["passing"], True)
|
||||||
self.assertEqual(body["messages"], ["dummy"])
|
self.assertEqual(body["messages"], ["dummy"])
|
||||||
self.assertEqual(body["log_messages"][0]["event"], ["Policy waiting"])
|
|
||||||
|
|
||||||
def test_types(self):
|
def test_types(self):
|
||||||
"""Test Policy's types endpoint"""
|
"""Test Policy's types endpoint"""
|
||||||
|
|
Reference in New Issue