1
1
mirror of https://github.com/github/semantic.git synced 2024-11-25 11:04:00 +03:00
semantic/test/PatchOutputSpec.hs
2015-12-30 15:31:27 -05:00

16 lines
364 B
Haskell

module PatchOutputSpec where
import Diff
import PatchOutput
import Range
import Source
import Syntax
import Control.Monad.Free
import Test.Hspec
spec :: Spec
spec = do
describe "hunks" $ do
it "empty diffs have no hunks" $
hunks (Free . Annotated (Info (Range 0 0) mempty, Info (Range 0 0) mempty) $ Leaf "") (fromList "", fromList "") `shouldBe` []