summaryrefslogtreecommitdiff
path: root/two/+test.ha
blob: 8f6164502713e0f4d362fec4b62dc7cfaaaedb94 (plain)
1
2
3
4
5
6
7
8
use os;
use io;

@test fn testtwo() void = {
	const f = os::open("two/in")!;
	defer io::close(f)!;
	assert(do(f) == 2);
};