mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-01 09:20:11 +00:00
010a045692
BREAKING CHANGE * changed test to quiz: fixes issues in #244 * fixed info.toml: #244 * fixed naming related issues
24 lines
430 B
Rust
24 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!");
|
|
}
|
|
}
|