Skip to content

Commit 1a16169

Browse files
committed
wip
1 parent b931b7b commit 1a16169

File tree

7 files changed

+1287
-6
lines changed

7 files changed

+1287
-6
lines changed

scim2_tester/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
from scim2_tester.checker import check_server
2+
from scim2_tester.checkers.patch import check_patch_mutability
3+
from scim2_tester.checkers.patch import check_patch_required
4+
from scim2_tester.checkers.patch import check_patch_uniqueness
25
from scim2_tester.discovery import get_all_available_tags
36
from scim2_tester.discovery import get_standard_resource_types
47
from scim2_tester.utils import CheckConfig
@@ -14,6 +17,9 @@
1417
"SCIMTesterError",
1518
"get_all_available_tags",
1619
"get_standard_resource_types",
20+
"check_patch_mutability",
21+
"check_patch_required",
22+
"check_patch_uniqueness",
1723
]
1824

1925
if __name__ == "__main__": # pragma: no cover
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
"""PATCH operation checkers for SCIM2."""
2+
3+
from .checkers import check_patch_mutability
4+
from .checkers import check_patch_required
5+
from .checkers import check_patch_uniqueness
6+
7+
__all__ = [
8+
"check_patch_mutability",
9+
"check_patch_required",
10+
"check_patch_uniqueness",
11+
]

0 commit comments

Comments
 (0)