start the tower of abstractions
Go / test (push) Failing after 28s

This commit is contained in:
2025-11-04 12:25:23 -10:00
parent d3997bfb53
commit 4e1cbce3a7
4 changed files with 63 additions and 36 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ func TestReadListElem(t *testing.T) {
func TestReadList(t *testing.T) {
input := "(1 2 3)"
l, err, pos := readList(input, 0, "user")
assert.Equal(t, list.New(3).Conj(2).Conj(1), l, "should read list")
assert.Equal(t, list.New().Conj(3).Conj(2).Conj(1), l, "should read list")
assert.Equal(t, nil, err, "should read without error")
assert.Equal(t, len(input), pos, "should read the whole string")
}