()
| 804 | |
| 805 | #[test] |
| 806 | fn test_begin_turn() { |
| 807 | let mut s = make_session(); |
| 808 | assert!(s.current_turn_started_at.is_none()); |
| 809 | s.begin_turn(); |
| 810 | assert!(s.current_turn_started_at.is_some()); |
| 811 | } |
| 812 | |
| 813 | #[test] |
| 814 | fn test_end_turn() { |
nothing calls this directly
no test coverage detected