We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c04564c commit ca07a7aCopy full SHA for ca07a7a
exercises/binary-search-tree/package.yaml
@@ -1,5 +1,5 @@
1
name: binary-search-tree
2
-version: 0.1.0.2
+version: 1.0.0.3
3
4
dependencies:
5
- base
exercises/binary-search-tree/test/Tests.hs
@@ -68,6 +68,9 @@ specs = do
68
it "iterating over smaller element" $
69
toList (fromList [int4, 2]) `shouldBe` [2, 4]
70
71
+ it "iterating over equal element" $
72
+ toList (fromList [int4, 4]) `shouldBe` [4, 4]
73
+
74
it "iterating over larger element" $
75
toList (fromList [int4, 5]) `shouldBe` [4, 5]
76
0 commit comments