-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfunc_max_test.go
43 lines (37 loc) · 897 Bytes
/
func_max_test.go
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
package testing
import "testing"
func Test_Func_Max_Ints(t *testing.T) {
rsl := `
print(max([1, 2, 3]))
`
setupAndRunCode(t, rsl, "--color=never")
assertOnlyOutput(t, stdOutBuffer, "3\n")
assertNoErrors(t)
}
func Test_Func_Max_Mix(t *testing.T) {
rsl := `
print(max([1, 2.2, 3]))
`
setupAndRunCode(t, rsl, "--color=never")
assertOnlyOutput(t, stdOutBuffer, "3\n")
assertNoErrors(t)
}
func Test_Func_Max_ErrorsForNonNumElements(t *testing.T) {
rsl := `
print(max([1, "ab", 3]))
`
setupAndRunCode(t, rsl, "--color=never")
expected := `Error at L2:11
print(max([1, "ab", 3]))
^^^^^^^^^^^^ max() requires a list of numbers, got "string" at index 1
`
assertError(t, 1, expected)
}
func Test_Func_Max_Negative(t *testing.T) {
rsl := `
print(max([-1, -2.2, -3]))
`
setupAndRunCode(t, rsl, "--color=never")
assertOnlyOutput(t, stdOutBuffer, "-1\n")
assertNoErrors(t)
}