fix test for new bitsy version
This commit is contained in:
parent
4ebfec02ef
commit
ff09ecd745
14
src/game.rs
14
src/game.rs
|
@ -946,10 +946,20 @@ mod test {
|
|||
game.sprite_ids(),
|
||||
vec!["A".to_string(), "a".to_string(), "0".to_string(), "1".to_string()]
|
||||
);
|
||||
assert_eq!(game.item_ids(), vec!["0".to_string(), "1".to_string()]);
|
||||
assert_eq!(
|
||||
game.item_ids(),
|
||||
vec!["0".to_string(), "1".to_string(), "2".to_string(), "3".to_string()]
|
||||
);
|
||||
assert_eq!(
|
||||
game.dialogue_ids(),
|
||||
vec!["SPR_0".to_string(), "ITM_0".to_string(), "0".to_string(), "1".to_string()]
|
||||
vec![
|
||||
"0".to_string(),
|
||||
"1".to_string(),
|
||||
"2".to_string(),
|
||||
"3".to_string(),
|
||||
"4".to_string(),
|
||||
"5".to_string()
|
||||
]
|
||||
);
|
||||
assert_eq!(game.palette_ids(), vec!["0".to_string(), "1".to_string()]);
|
||||
assert_eq!(
|
||||
|
|
Loading…
Reference in New Issue