From 1ea538475959614ec2e25ba82399f8f7202b000e Mon Sep 17 00:00:00 2001 From: Clemens Adolphs <clemens.adolphs@gmail.com> Date: Fri, 5 Mar 2021 14:35:02 -0800 Subject: [PATCH] fix(structs3): Add check to prevent naive implementation --- exercises/structs/structs3.rs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/exercises/structs/structs3.rs b/exercises/structs/structs3.rs index 06fcaf2..a8c351d 100644 --- a/exercises/structs/structs3.rs +++ b/exercises/structs/structs3.rs @@ -57,6 +57,15 @@ mod tests { assert!(package.is_international()); } + #[test] + fn create_local_package() { + let sender_country = String::from("Canada"); + let recipient_country = sender_country.clone(); + + let package = Package::new(sender_country, recipient_country, 1200); + + assert!(!package.is_international()); + } #[test] fn calculate_transport_fees() { let sender_country = String::from("Spain");