Outline more tests for the other Card methods
This commit is contained in:
40
src/card.rs
40
src/card.rs
@@ -248,4 +248,44 @@ mod test {
|
||||
assert_eq!(stacked, expected);
|
||||
assert!(doors.is_none());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn cut_octagon() {
|
||||
todo!();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn cut_triangle() {
|
||||
todo!();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn flip_triangle_vertical() {
|
||||
todo!();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn flip_triangle_horizontal() {
|
||||
todo!();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn transpose_vertical() {
|
||||
todo!();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn transpose_horizontal(){
|
||||
todo!();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn rotate_clockwise() {
|
||||
todo!();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn rotate_counter_clockwise() {
|
||||
todo!();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user