Skip to content

Commit 214963f

Browse files
committed
wip
1 parent b931b7b commit 214963f

7 files changed

Lines changed: 1287 additions & 6 deletions

File tree

scim2_tester/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
from scim2_tester.checker import check_server
22
from scim2_tester.discovery import get_all_available_tags
33
from scim2_tester.discovery import get_standard_resource_types
4+
from scim2_tester.patch import check_patch_mutability
5+
from scim2_tester.patch import check_patch_required
6+
from scim2_tester.patch import check_patch_uniqueness
47
from scim2_tester.utils import CheckConfig
58
from scim2_tester.utils import CheckResult
69
from scim2_tester.utils import SCIMTesterError
@@ -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

scim2_tester/patch/__init__.py

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)