1
1
mirror of https://github.com/github/semantic.git synced 2024-11-29 02:44:36 +03:00
semantic/test/SES/Myers/Spec.hs

26 lines
990 B
Haskell
Raw Normal View History

2017-03-20 18:25:58 +03:00
module SES.Myers.Spec where
import Data.These
2017-03-20 18:25:58 +03:00
import Prologue
import SES.Myers
2017-03-20 18:25:58 +03:00
import Test.Hspec
import Test.Hspec.LeanCheck
2017-03-20 18:25:58 +03:00
spec :: Spec
spec = do
describe "ses" $ do
prop "returns equal lists in These" $
\ as -> (ses (==) as as :: EditScript Char Char) `shouldBe` zipWith These as as
prop "returns deletions in This" $
\ as -> (ses (==) as [] :: EditScript Char Char) `shouldBe` fmap This as
prop "returns insertions in That" $
\ bs -> (ses (==) [] bs :: EditScript Char Char) `shouldBe` fmap That bs
2017-03-23 00:20:37 +03:00
prop "returns all elements individually for disjoint inputs" $
2017-03-23 20:28:40 +03:00
\ as bs -> length (ses (==) ((,) 0 <$> as :: [(Int, Char)]) ((,) 1 <$> bs :: [(Int, Char)])) `shouldBe` length as + length bs
prop "is lossless w.r.t. both input elements & ordering" $
\ as bs -> foldr (\ each (as, bs) -> these (flip (,) bs. (:as)) ((,) as . (:bs)) (\ a b -> (a:as, b:bs)) each) ([], []) (ses (==) as bs :: EditScript Char Char) `shouldBe` (as, bs)