diff options
Diffstat (limited to 'tests/unit/test_privileges_checking.py')
-rw-r--r-- | tests/unit/test_privileges_checking.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/unit/test_privileges_checking.py b/tests/unit/test_privileges_checking.py new file mode 100644 index 0000000..460344f --- /dev/null +++ b/tests/unit/test_privileges_checking.py @@ -0,0 +1,16 @@ +"""Tests to verify the privileges check works.""" +import pytest + +from gn_libs.privileges import check + +@pytest.mark.unit_test +@pytest.mark.parametrize( + "spec,privileges,expected", + ()) +def test_check(spec, privileges, expected): + """ + GIVEN: A privileges-check specification, and a tuple of privileges + WHEN: A check is performed + THEN: Verify that the check returns the expected value + """ + assert check(spec, privileges) == expected |