()
| 328 | |
| 329 | #[test] |
| 330 | fn parse_mfa_condition() { |
| 331 | let parts = vec!["REQUIRE", "MFA"]; |
| 332 | let conditions = parse_conditions(&parts); |
| 333 | assert_eq!(conditions.len(), 1); |
| 334 | assert!(matches!(conditions[0], GrantCondition::RequireMfa)); |
| 335 | } |
| 336 | } |
nothing calls this directly
no test coverage detected