more merge tests

This commit is contained in:
Max Bradbury 2020-06-28 13:10:13 +01:00
parent fd91e333a5
commit 4c47de406e
1 changed files with 6 additions and 1 deletions

View File

@ -914,6 +914,11 @@ mod test {
assert_eq!(
game.dialogue_ids(),
vec!["SPR_0".to_string(), "ITM_0".to_string(), "0".to_string(), "1".to_string()]
)
);
assert_eq!(game.palette_ids(), vec!["0".to_string(), "1".to_string()]);
assert_eq!(
game.get_room_by_id("1".to_string()).unwrap().palette_id,
Some("1".to_string())
);
}
}