From 4d2db50657735757fb7d8ff46e9341b63672b8c5 Mon Sep 17 00:00:00 2001
From: Tyler Cardinal <83625450+tjcardinal@users.noreply.github.com>
Date: Thu, 13 May 2021 21:42:16 -0500
Subject: [PATCH] Complete test exercises (#17)

---
 exercises/tests/tests1.rs |  4 +---
 exercises/tests/tests2.rs |  4 +---
 exercises/tests/tests3.rs | 11 +++++++----
 3 files changed, 9 insertions(+), 10 deletions(-)

diff --git a/exercises/tests/tests1.rs b/exercises/tests/tests1.rs
index 50586a1..bb50f74 100644
--- a/exercises/tests/tests1.rs
+++ b/exercises/tests/tests1.rs
@@ -6,12 +6,10 @@
 // This test has a problem with it -- make the test compile! Make the test
 // pass! Make the test fail! Execute `rustlings hint tests1` for hints :)
 
-// I AM NOT DONE
-
 #[cfg(test)]
 mod tests {
     #[test]
     fn you_can_assert() {
-        assert!();
+        assert!(&"Dog".to_ascii_uppercase() == "DOG");
     }
 }
diff --git a/exercises/tests/tests2.rs b/exercises/tests/tests2.rs
index 0d981ad..13c9542 100644
--- a/exercises/tests/tests2.rs
+++ b/exercises/tests/tests2.rs
@@ -2,12 +2,10 @@
 // This test has a problem with it -- make the test compile! Make the test
 // pass! Make the test fail! Execute `rustlings hint tests2` for hints :)
 
-// I AM NOT DONE
-
 #[cfg(test)]
 mod tests {
     #[test]
     fn you_can_assert_eq() {
-        assert_eq!();
+        assert_eq!("Cat".to_string(), String::from("Cat"));
     }
 }
diff --git a/exercises/tests/tests3.rs b/exercises/tests/tests3.rs
index 3424f94..51db20f 100644
--- a/exercises/tests/tests3.rs
+++ b/exercises/tests/tests3.rs
@@ -4,8 +4,6 @@
 // we expect to get when we call `is_even(5)`.
 // Execute `rustlings hint tests3` for hints :)
 
-// I AM NOT DONE
-
 pub fn is_even(num: i32) -> bool {
     num % 2 == 0
 }
@@ -16,11 +14,16 @@ mod tests {
 
     #[test]
     fn is_true_when_even() {
-        assert!();
+        assert!(is_even(2));
     }
 
     #[test]
     fn is_false_when_odd() {
-        assert!();
+        assert!(!is_even(3));
+    }
+
+    #[test]
+    fn is_false_when_5() {
+        assert!(!is_even(5));
     }
 }