mirror of
https://github.com/github/semantic.git
synced 2024-12-25 16:02:43 +03:00
18 lines
606 B
Haskell
18 lines
606 B
Haskell
module PatchOutputSpec where
|
|
|
|
import Control.Comonad.Trans.Cofree
|
|
import Control.Monad.Trans.Free
|
|
import Data.Functor.Both
|
|
import Info
|
|
import Range
|
|
import Renderer.Patch
|
|
import Source
|
|
import Syntax
|
|
import Test.Hspec
|
|
|
|
spec :: Spec
|
|
spec = parallel $
|
|
describe "hunks" $
|
|
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 = Both (0, 0), changes = [], trailingContext = []}]
|