1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-07-15 01:24:27 +02:00

Add a second test case

This commit is contained in:
Stig Johan Berggren
2020-02-25 14:18:31 +01:00
parent 8b971ffab6
commit a45486f2d0

View File

@ -12,8 +12,12 @@ mod tests {
use super::*; use super::*;
#[test] #[test]
fn test_my_macro() { fn test_my_macro_world() {
assert_eq!(my_macro!("world!"), "Hello world!"); assert_eq!(my_macro!("world!"), "Hello world!");
} }
}
#[test]
fn test_my_macro_goodbye() {
assert_eq!(my_macro!("goodbye!"), "Hello goodbye!");
}
}