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

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