mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-12-29 00:36:30 +00:00
19 lines
312 B
Rust
19 lines
312 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!
|
|
|
|
// I AM NOT DONE
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_my_macro() {
|
|
assert_eq!(my_macro!("world!"), "Hello world!");
|
|
}
|
|
}
|
|
|