summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authormokou <mokou@fastmail.com>2022-07-15 12:13:40 +0200
committermokou <mokou@fastmail.com>2022-07-15 12:13:40 +0200
commit7fc393bed4689d4e106a199dd956bef796976935 (patch)
tree83f992d69f52327a50eb9180dee01335d64d428e /exercises
parentd3a335bc64234738adb9d7514a5930bd6f9d38ee (diff)
chore: remove quiz4
Diffstat (limited to 'exercises')
-rw-r--r--exercises/quiz4.rs23
1 files changed, 0 insertions, 23 deletions
diff --git a/exercises/quiz4.rs b/exercises/quiz4.rs
deleted file mode 100644
index 6c47480..0000000
--- a/exercises/quiz4.rs
+++ /dev/null
@@ -1,23 +0,0 @@
-// quiz4.rs
-// This quiz covers the sections:
-// - Modules
-// - Macros
-
-// Write a macro that passes the quiz! No hints this time, you can do it!
-
-// I AM NOT DONE
-
-#[cfg(test)]
-mod tests {
- use super::*;
-
- #[test]
- fn test_my_macro_world() {
- assert_eq!(my_macro!("world!"), "Hello world!");
- }
-
- #[test]
- fn test_my_macro_goodbye() {
- assert_eq!(my_macro!("goodbye!"), "Hello goodbye!");
- }
-}