mirror of
https://github.com/modrinth/code.git
synced 2026-08-30 11:36:05 +00:00
9 lines
124 B
Rust
9 lines
124 B
Rust
#[cfg(test)]
|
|
mod tests {
|
|
#[test]
|
|
fn it_works() {
|
|
let result = 2 + 2;
|
|
assert_eq!(result, 4);
|
|
}
|
|
}
|