1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
let catch = std.catch
let typecheck = std.typecheck
function assert_caught(fn)
let result = catch(fn)
typecheck(result, "error")
end
assert_caught(
function()
1 > 2.0
end
)
assert_caught(
function()
let error = std.error("something bad happened", nil)
error.context = "oops..."
end
)
assert_caught(
function()
1 / 0
end
)
assert_caught(
function()
[][5]
end
)
assert_caught(
function()
std.assert()
end
)
assert_caught(
function()
std.assert(false)
end
)