Fix test
This commit is contained in:
parent
73e1980256
commit
c7fd289816
@ -446,10 +446,16 @@ mod tests {
|
|||||||
let mut list = ModelRectVec::new(ModelRect::point(5, 5));
|
let mut list = ModelRectVec::new(ModelRect::point(5, 5));
|
||||||
|
|
||||||
let neighbor = ModelRect::point(6, 5);
|
let neighbor = ModelRect::point(6, 5);
|
||||||
let not_neighbor = ModelRect::point(6, 6);
|
|
||||||
|
|
||||||
list.join(neighbor);
|
list.join(neighbor);
|
||||||
assert_eq!(1, list.list.len());
|
assert_eq!(1, list.list.len());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_model_vec_no_join() {
|
||||||
|
let mut list = ModelRectVec::new(ModelRect::point(5, 5));
|
||||||
|
|
||||||
|
let not_neighbor = ModelRect::point(6, 6);
|
||||||
|
|
||||||
list.join(not_neighbor);
|
list.join(not_neighbor);
|
||||||
assert_eq!(2, list.list.len());
|
assert_eq!(2, list.list.len());
|
||||||
|
Loading…
Reference in New Issue
Block a user