mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-09 12:16:43 +03:00
Add more test cases
This commit is contained in:
parent
83ac8209ae
commit
d4a8208069
@ -1515,3 +1515,37 @@ expect
|
||||
|> Dict.insert "Charlie" 19
|
||||
|
||||
d1 == d2
|
||||
|
||||
expect
|
||||
keysToDelete = [1,2]
|
||||
d1 = Dict.empty {}
|
||||
|> Dict.insert 0 0
|
||||
|> Dict.insert 1 1
|
||||
|> Dict.insert 2 2
|
||||
|> Dict.insert 3 3
|
||||
|> Dict.insert 4 4
|
||||
|> Dict.keepIf (\(k,_v) -> List.contains keysToDelete k |> Bool.not)
|
||||
|
||||
d2 = Dict.empty {}
|
||||
|> Dict.insert 0 0
|
||||
|> Dict.insert 3 3
|
||||
|> Dict.insert 4 4
|
||||
|
||||
d1 == d2
|
||||
|
||||
expect
|
||||
keysToDelete = [2,4]
|
||||
d1 = Dict.empty {}
|
||||
|> Dict.insert 0 0
|
||||
|> Dict.insert 1 1
|
||||
|> Dict.insert 2 2
|
||||
|> Dict.insert 3 3
|
||||
|> Dict.insert 4 4
|
||||
|> Dict.keepIf (\(k,_v) -> List.contains keysToDelete k |> Bool.not)
|
||||
|
||||
d2 = Dict.empty {}
|
||||
|> Dict.insert 0 0
|
||||
|> Dict.insert 1 1
|
||||
|> Dict.insert 3 3
|
||||
|
||||
d1 == d2
|
||||
|
Loading…
Reference in New Issue
Block a user