12 lines
149 B
Rust
12 lines
149 B
Rust
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
#[test]
|
|
fn test_demo() {
|
|
let i = 0;
|
|
|
|
assert_eq!(0, i, "Values should match {} {}", 0, 1);
|
|
}
|
|
}
|