Outline more tests for the other Card methods

This commit is contained in:
2025-08-22 19:22:48 -05:00
parent b3b8d1a814
commit 2024ad6e95

View File

@@ -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!();
}
}