summaryrefslogtreecommitdiff
path: root/three/+test.ha
diff options
context:
space:
mode:
Diffstat (limited to 'three/+test.ha')
-rw-r--r--three/+test.ha8
1 files changed, 8 insertions, 0 deletions
diff --git a/three/+test.ha b/three/+test.ha
new file mode 100644
index 0000000..5ec9745
--- /dev/null
+++ b/three/+test.ha
@@ -0,0 +1,8 @@
+use os;
+use io;
+
+@test fn testthree() void = {
+ const f = os::open("three/in")!;
+ defer io::close(f)!;
+ assert(do(f) == 161);
+};