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