()
| 56 | |
| 57 | #[test] |
| 58 | fn test_join_command() { |
| 59 | let command = UserCommand::JoinRoom(JoinRoomCommand { |
| 60 | room: "test".to_string(), |
| 61 | }); |
| 62 | |
| 63 | assert_command_serialization(&command, r#"{"_ct":"join_room","r":"test"}"#); |
| 64 | } |
| 65 | |
| 66 | #[test] |
| 67 | fn test_leave_command() { |
nothing calls this directly
no test coverage detected