From 2024ad6e9553bb0639810b0e79b08ddfc7b1dd6b Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Fri, 22 Aug 2025 19:22:48 -0500 Subject: [PATCH] Outline more tests for the other Card methods --- src/card.rs | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/src/card.rs b/src/card.rs index 531206a..879b8e6 100644 --- a/src/card.rs +++ b/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!(); + } }