Skip to content

Commit 1b04eb2

Browse files
committed
More tests
1 parent 63b3666 commit 1b04eb2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/Main.purs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ check expected a b =
2222
main = do
2323
check EQ [] ([] :: Array Number)
2424
check LT [] [0]
25+
check GT [0] []
2526
check EQ [1,2,3] [1,2,3]
2627
check LT [1,1,3] [1,2,3]
27-
28+
check GT [1,3,3] [1,2,3]
2829

2930
log "All good!"

0 commit comments

Comments
 (0)