()
| 516 | |
| 517 | #[test] |
| 518 | fn resolve_builtin_no_chain() { |
| 519 | let store = RoleStore::new(); |
| 520 | let chain = store.resolve_inheritance(&Role::ReadOnly).unwrap(); |
| 521 | assert_eq!(chain.len(), 1); |
| 522 | } |
| 523 | |
| 524 | /// A chain of 8 custom roles (each inheriting from the previous) must |
| 525 | /// succeed at grant time and resolve cleanly. |
nothing calls this directly
no test coverage detected