summaryrefslogtreecommitdiffstats
path: root/tests/unit
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/test_policy.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/unit/test_policy.py b/tests/unit/test_policy.py
index 2ccf71e..3d9e58d 100644
--- a/tests/unit/test_policy.py
+++ b/tests/unit/test_policy.py
@@ -208,6 +208,11 @@ class EnforcerTest(PolicyBaseTestCase):
self.assertEquals(self.enforcer.rules, {'test': 'test',
'test1': 'test1'})
+ def test_get_policy_path_raises_exc(self):
+ enforcer = policy.Enforcer(policy_file='raise_error.json')
+ self.assertRaises(cfg.ConfigFilesNotFoundError,
+ enforcer._get_policy_path)
+
class FakeCheck(policy.BaseCheck):
def __init__(self, result=None):