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