mirror of
https://github.com/github/semantic.git
synced 2024-12-26 00:12:29 +03:00
Add a spec testing difference
.
This commit is contained in:
parent
205a885305
commit
aebf6dd488
@ -2,3 +2,9 @@ module OrderedMapSpec where
|
|||||||
|
|
||||||
import Data.Map as Map
|
import Data.Map as Map
|
||||||
|
|
||||||
|
orderedMapSpec :: IO ()
|
||||||
|
orderedMapSpec = hspec $ do
|
||||||
|
describe "OrderedMap" $ do
|
||||||
|
describe "difference" $ do
|
||||||
|
it "should return those elements of a not in b" $
|
||||||
|
Map.difference (Map.fromList [ ("a", 1), ("b", 2), ("c", 3) ]) (Map.fromList [ ("b", 2), ("c", 3), ("d", 4) ]) `shouldBe` (Map.fromList [ ("a", 1) ])
|
||||||
|
Loading…
Reference in New Issue
Block a user