mirror of
https://github.com/github/semantic.git
synced 2024-11-24 17:04:47 +03:00
cfe15a5afa
# Conflicts: # src/Alignment.hs # src/Control/Comonad/Cofree.hs # src/Data/Adjoined.hs # src/Data/Align.hs # src/Data/Bifunctor/These.hs # src/Data/Coalescent.hs # src/Data/Copointed.hs # src/Data/Functor/Both.hs # src/Data/Option.hs # src/Line.hs # src/Patch.hs # src/Range.hs # src/Renderer/JSON.hs # src/Renderer/Patch.hs # src/Renderer/Split.hs # src/SplitDiff.hs # stack.yaml # test/AlignmentSpec.hs # test/CorpusSpec.hs # test/Data/Adjoined/Spec.hs # test/Data/Functor/Both/Spec.hs
20 lines
526 B
Haskell
20 lines
526 B
Haskell
module Main where
|
|
|
|
import Prologue
|
|
import qualified AlignmentSpec
|
|
import qualified CorpusSpec
|
|
import qualified InterpreterSpec
|
|
import qualified OrderedMapSpec
|
|
import qualified PatchOutputSpec
|
|
import qualified TermSpec
|
|
import Test.Hspec
|
|
|
|
main :: IO ()
|
|
main = hspec $ parallel $ do
|
|
describe "Alignment" AlignmentSpec.spec
|
|
describe "Corpus" CorpusSpec.spec
|
|
describe "Interpreter" InterpreterSpec.spec
|
|
describe "OrderedMap" OrderedMapSpec.spec
|
|
describe "PatchOutput" PatchOutputSpec.spec
|
|
describe "Term" TermSpec.spec
|