diff --git a/tests/tests.rs b/tests/tests.rs index 1e68fb2..293b229 100644 --- a/tests/tests.rs +++ b/tests/tests.rs @@ -1,11 +1,8 @@ -#[cfg(test)] -mod tests { - #[test] - fn test_demo() { - let i = 0; +#[test] +fn test_demo() { + let i = 0; - assert_eq!(0, i, "Values should match {} {}", 0, 1); - } + assert_eq!(0, i, "Values should match {} {}", 0, 1); }