rustlings/exercises/test4.rs
Enrico Bozzolini 07de819eee Current status
2020-05-22 22:03:52 +02:00

31 lines
559 B
Rust

// test4.rs
// This test covers the sections:
// - Modules
// - Macros
// Write a macro that passes the test! No hints this time, you can do it!
mod macros {
#[macro_export]
macro_rules! my_macro {
($text:expr) => {
format!("Hello {}", $text);
};
}
}
#[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!");
}
}