1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 10:15:55 +03:00
semantic/test/PatchOutputSpec.hs

19 lines
581 B
Haskell
Raw Normal View History

2015-12-18 17:49:21 +03:00
module PatchOutputSpec where
2016-05-26 20:11:34 +03:00
import Prologue
import Data.Functor.Both
import Data.String
2015-12-18 17:49:33 +03:00
import Diff
2016-03-31 00:33:07 +03:00
import Info
2015-12-18 17:49:33 +03:00
import Range
2016-03-31 00:33:07 +03:00
import Renderer.Patch
2015-12-25 00:38:50 +03:00
import Source
2015-12-18 17:49:33 +03:00
import Syntax
2015-12-18 17:49:21 +03:00
import Test.Hspec
spec :: Spec
2016-02-10 22:32:26 +03:00
spec = parallel $
describe "hunks" $
2016-03-02 01:13:53 +03:00
it "empty diffs have empty hunks" $
hunks (free . Free $ pure (Info (Range 0 0) mempty 1) :< Leaf "") (both (SourceBlob (fromList "") "abcde" "path2.txt" (Just defaultPlainBlob)) (SourceBlob (fromList "") "xyz" "path2.txt" (Just defaultPlainBlob))) `shouldBe` [Hunk {offset = pure 0, changes = [], trailingContext = []}]