Enable test for exercise test4
This commit is contained in:
parent
ec51cdb229
commit
8b971ffab6
|
@ -7,8 +7,13 @@
|
|||
|
||||
// I AM NOT DONE
|
||||
|
||||
fn main() {
|
||||
if my_macro!("world!") != "Hello world!" {
|
||||
panic!("Oh no! Wrong output!");
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn test_my_macro() {
|
||||
assert_eq!(my_macro!("world!"), "Hello world!");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue