()
| 932 | |
| 933 | #[test] |
| 934 | fn test_session_state_clear_ended_at() { |
| 935 | let mut s = make_session(); |
| 936 | s.set_phase(Phase::Ended); |
| 937 | assert!(s.ended_at.is_some()); |
| 938 | |
| 939 | s.clear_ended_at(); |
| 940 | assert!(s.ended_at.is_none()); |
| 941 | } |
| 942 | |
| 943 | // Serde roundtrip |
| 944 |
nothing calls this directly
no test coverage detected