summaryrefslogtreecommitdiff
path: root/test/test_api.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_api.py')
-rw-r--r--test/test_api.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/test_api.py b/test/test_api.py
index 61ddae0..e5a82df 100644
--- a/test/test_api.py
+++ b/test/test_api.py
@@ -108,3 +108,15 @@ def test_project_locked():
assert api.locked(prj) is True
api.unlock(prj)
assert api.locked(prj) is False
+
+
+def test_get_users():
+ users = api.get_users(prj)
+ print users
+ assert len(users) > 0
+
+
+def test_get_groups():
+ groups = api.get_groups(prj)
+ print groups
+ assert groups == []