Add missing tests to module entry points
This commit is contained in:
parent
1891a420e8
commit
d05800a6d3
|
@ -171,3 +171,7 @@ pub fn main() u8 {
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
test {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
@ -23,3 +23,11 @@ pub const stack = @import("./stack.zig");
|
||||||
///
|
///
|
||||||
///
|
///
|
||||||
pub const table = @import("./table.zig");
|
pub const table = @import("./table.zig");
|
||||||
|
|
||||||
|
test {
|
||||||
|
_ = io;
|
||||||
|
_ = mem;
|
||||||
|
_ = meta;
|
||||||
|
_ = stack;
|
||||||
|
_ = table;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue