()
| 432 | |
| 433 | #[test] |
| 434 | fn check_status_suspended_err() { |
| 435 | let mut ctx = AuthContext::from_identity(&test_identity(), "s_test_006".into()); |
| 436 | ctx.status = AuthStatus::Suspended; |
| 437 | assert!(ctx.check_status().is_err()); |
| 438 | } |
| 439 | |
| 440 | #[test] |
| 441 | fn check_status_banned_err() { |
nothing calls this directly
no test coverage detected