1
0
Fork 0
mirror of https://github.com/notohh/rustlings.git synced 2025-01-13 18:28:08 -05:00
rustlings/exercises/quiz4.rs
Sanjay K 010a045692
feat: renames test to quiz, fixes
BREAKING CHANGE

* changed test to quiz: fixes issues in 
* fixed info.toml: 
* fixed naming related issues
2020-05-19 18:47:44 +02:00

23 lines
430 B
Rust

// 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!");
}
}