scim-server 0.5.3

A comprehensive SCIM 2.0 server library for Rust with multi-tenant support and type-safe operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Unit tests for schema system components
//!
//! This module contains unit tests for the SCIM schema system, including
//! schema registry, validation logic, type definitions, and structure
//! validation. These tests focus on testing schema components in isolation.
//!
//! ## Test Organization
//!
//! - [`structure_validation`] - Schema structure validation tests
//! - [`data_types`] - SCIM data type validation tests

pub mod data_types;
pub mod structure_validation;