1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-10-19 13:28:14 +02:00
rustlings/exercises/quiz4.rs

24 lines
430 B
Rust
Raw Normal View History

// quiz4.rs
// This quiz covers the sections:
2019-01-23 20:48:01 +01:00
// - Modules
// - Macros
// Write a macro that passes the quiz! No hints this time, you can do it!
2019-01-23 20:48:01 +01:00
// I AM NOT DONE
2020-02-25 14:13:10 +01:00
#[cfg(test)]
mod tests {
use super::*;
#[test]
2020-02-25 14:18:31 +01:00
fn test_my_macro_world() {
2020-02-25 14:13:10 +01:00
assert_eq!(my_macro!("world!"), "Hello world!");
2019-01-23 20:48:01 +01:00
}
2020-02-25 14:13:10 +01:00
2020-02-25 14:18:31 +01:00
#[test]
fn test_my_macro_goodbye() {
assert_eq!(my_macro!("goodbye!"), "Hello goodbye!");
}
}