Move MsgBuffer in it's own file for unit test purpose

Signed-off-by: Francis Bouvier <francis@lightpanda.io>
This commit is contained in:
Francis Bouvier
2024-06-19 15:48:20 +02:00
parent 5eae15889d
commit 0f8b47b598
3 changed files with 157 additions and 152 deletions

View File

@@ -295,6 +295,9 @@ const kb = 1024;
const ms = std.time.ns_per_ms;
test {
const msgTest = @import("msg.zig");
std.testing.refAllDecls(msgTest);
const asyncTest = @import("async/test.zig");
std.testing.refAllDecls(asyncTest);