rustlings/exercises/test4.rs

20 lines
312 B
Rust
Raw Normal View History

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