11 lines
168 B
Zig
11 lines
168 B
Zig
const std = @import("std");
|
|
const expect = std.testing.expect;
|
|
|
|
test "always passes" {
|
|
try expect(true);
|
|
}
|
|
|
|
// test "always fails" {
|
|
// try expect(false);
|
|
// }
|