test:zig
This commit is contained in:
10
guide/language/run-test.zig
Normal file
10
guide/language/run-test.zig
Normal file
@@ -0,0 +1,10 @@
|
||||
const std = @import("std");
|
||||
const expect = std.testing.expect;
|
||||
|
||||
test "always passes" {
|
||||
try expect(true);
|
||||
}
|
||||
|
||||
// test "always fails" {
|
||||
// try expect(false);
|
||||
// }
|
||||
Reference in New Issue
Block a user