()
| 832 | |
| 833 | #[test] |
| 834 | fn test_begin_turn() { |
| 835 | let mut s = make_session(); |
| 836 | assert!(s.current_turn_started_at.is_none()); |
| 837 | s.begin_turn(); |
| 838 | assert!(s.current_turn_started_at.is_some()); |
| 839 | } |
| 840 | |
| 841 | #[test] |
| 842 | fn test_end_turn() { |
nothing calls this directly
no test coverage detected