import
This commit is contained in:
parent
1772d8f2e8
commit
6533de8b8c
|
@ -93,6 +93,7 @@ impl ToString for Tile {
|
||||||
mod test {
|
mod test {
|
||||||
use crate::tile::Tile;
|
use crate::tile::Tile;
|
||||||
use crate::image::Image;
|
use crate::image::Image;
|
||||||
|
use crate::mock;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_tile_from_string() {
|
fn test_tile_from_string() {
|
||||||
|
@ -118,8 +119,8 @@ mod test {
|
||||||
name: Some("chequers".to_string()),
|
name: Some("chequers".to_string()),
|
||||||
wall: None,
|
wall: None,
|
||||||
animation_frames: vec![
|
animation_frames: vec![
|
||||||
crate::mock::image::chequers_1(),
|
mock::image::chequers_1(),
|
||||||
crate::mock::image::chequers_2(),
|
mock::image::chequers_2(),
|
||||||
],
|
],
|
||||||
colour_id: None,
|
colour_id: None,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue