about summary refs log tree commit diff
path: root/src/monkey_brain/test.zig
diff options
context:
space:
mode:
authormakefunstuff <[email protected]>2024-07-11 00:05:11 +0200
committermakefunstuff <[email protected]>2024-07-11 00:05:11 +0200
commitfd3a727f4b4f819178225cdd87d8788b85c4b86c (patch)
tree58c6ee139f7768ec739477354af0faf001b2d40d /src/monkey_brain/test.zig
parente5a064e82fe7d36f4423abdf798f9f1f0a90ae0e (diff)
downloadtinkerbunk-fd3a727f4b4f819178225cdd87d8788b85c4b86c.tar.gz
some fixes and dummy neuron
Diffstat (limited to '')
-rw-r--r--src/monkey_brain/test.zig9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/monkey_brain/test.zig b/src/monkey_brain/test.zig
index b3363e9..dd14718 100644
--- a/src/monkey_brain/test.zig
+++ b/src/monkey_brain/test.zig
@@ -1,3 +1,8 @@
-comptime {
-    _ = @import("perceptron.zig");
+const std = @import("std");
+const testing = std.testing;
+pub const perceptron = @import("perceptron.zig");
+pub const neuron = @import("neural_network/neuron.zig");
+
+test {
+    testing.refAllDeclsRecursive(@This());
 }