mirror of
https://github.com/github/semantic.git
synced 2024-11-25 11:04:00 +03:00
16 lines
365 B
Haskell
16 lines
365 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` []
|