Add test stub

This commit is contained in:
2024-10-03 18:53:21 -05:00
parent 54b07d7237
commit 766c95302d

View File

@@ -72,3 +72,11 @@ async fn main() {
exit(1);
}
}
mod tests {
#[test]
fn test_nothing() {
assert_eq!(1, 1);
}
}