2016-01-05 19:27:37 +03:00
|
|
|
module Main where
|
|
|
|
|
2016-02-28 22:05:19 +03:00
|
|
|
import qualified AlignmentSpec
|
2016-02-16 20:33:41 +03:00
|
|
|
import qualified CorpusSpec
|
2016-03-11 17:49:03 +03:00
|
|
|
import qualified Data.Adjoined.Spec
|
2016-03-15 17:50:13 +03:00
|
|
|
import qualified Data.Functor.Both.Spec
|
2016-01-05 19:27:37 +03:00
|
|
|
import qualified InterpreterSpec
|
|
|
|
import qualified OrderedMapSpec
|
|
|
|
import qualified PatchOutputSpec
|
|
|
|
import qualified TermSpec
|
|
|
|
import Test.Hspec
|
|
|
|
|
|
|
|
main :: IO ()
|
2016-02-18 01:44:37 +03:00
|
|
|
main = hspec $ parallel $ do
|
2016-02-28 22:05:19 +03:00
|
|
|
describe "Alignment" AlignmentSpec.spec
|
2016-02-16 20:33:41 +03:00
|
|
|
describe "Corpus" CorpusSpec.spec
|
2016-03-11 17:49:03 +03:00
|
|
|
describe "Data.Adjoined" Data.Adjoined.Spec.spec
|
2016-03-15 17:50:13 +03:00
|
|
|
describe "Data.Functor.Both" Data.Functor.Both.Spec.spec
|
2016-01-05 19:27:37 +03:00
|
|
|
describe "Interpreter" InterpreterSpec.spec
|
|
|
|
describe "OrderedMap" OrderedMapSpec.spec
|
|
|
|
describe "PatchOutput" PatchOutputSpec.spec
|
|
|
|
describe "Term" TermSpec.spec
|