()
| 405 | |
| 406 | #[test] |
| 407 | fn create_custom_role() { |
| 408 | let store = RoleStore::new(); |
| 409 | store |
| 410 | .create_role("analyst", TenantId::new(1), None, None) |
| 411 | .unwrap(); |
| 412 | assert!(store.get_role("analyst").is_some()); |
| 413 | } |
| 414 | |
| 415 | #[test] |
| 416 | fn create_with_builtin_parent() { |
nothing calls this directly
no test coverage detected