2016-01-05 19:27:37 +03:00
|
|
|
module Main where
|
|
|
|
|
2016-05-26 20:11:34 +03:00
|
|
|
import Prologue
|
2017-02-13 20:17:46 +03:00
|
|
|
import qualified AlignmentSpec
|
2017-04-05 18:10:23 +03:00
|
|
|
import qualified Command.Spec
|
2017-03-31 18:48:21 +03:00
|
|
|
import qualified Command.Diff.Spec
|
2017-03-31 18:50:36 +03:00
|
|
|
import qualified Command.Parse.Spec
|
2016-07-26 10:58:14 +03:00
|
|
|
import qualified Data.Mergeable.Spec
|
2016-06-23 00:59:28 +03:00
|
|
|
import qualified Data.RandomWalkSimilarity.Spec
|
2017-03-01 02:35:43 +03:00
|
|
|
import qualified DiffSpec
|
2017-03-01 01:09:57 +03:00
|
|
|
import qualified SummarySpec
|
2017-03-02 01:06:58 +03:00
|
|
|
import qualified GitmonClientSpec
|
2016-01-05 19:27:37 +03:00
|
|
|
import qualified InterpreterSpec
|
|
|
|
import qualified PatchOutputSpec
|
2016-09-13 18:18:38 +03:00
|
|
|
import qualified RangeSpec
|
2017-03-20 18:25:58 +03:00
|
|
|
import qualified SES.Myers.Spec
|
2017-03-01 02:35:43 +03:00
|
|
|
import qualified SourceSpec
|
2016-01-05 19:27:37 +03:00
|
|
|
import qualified TermSpec
|
2017-02-14 22:29:24 +03:00
|
|
|
import qualified TOCSpec
|
2017-02-22 01:02:31 +03:00
|
|
|
import qualified IntegrationSpec
|
2016-01-05 19:27:37 +03:00
|
|
|
import Test.Hspec
|
|
|
|
|
|
|
|
main :: IO ()
|
2017-04-07 19:24:57 +03:00
|
|
|
main = hspec $ do
|
|
|
|
parallel $ do
|
2017-03-22 00:48:47 +03:00
|
|
|
describe "Alignment" AlignmentSpec.spec
|
2017-04-05 18:10:23 +03:00
|
|
|
describe "Command" Command.Spec.spec
|
2017-03-31 18:48:21 +03:00
|
|
|
describe "Command.Diff" Command.Diff.Spec.spec
|
2017-03-31 18:50:36 +03:00
|
|
|
describe "Command.Parse" Command.Parse.Spec.spec
|
2017-03-22 00:48:47 +03:00
|
|
|
describe "Data.Mergeable" Data.Mergeable.Spec.spec
|
|
|
|
describe "Data.RandomWalkSimilarity" Data.RandomWalkSimilarity.Spec.spec
|
|
|
|
describe "Diff" DiffSpec.spec
|
2017-04-08 17:30:22 +03:00
|
|
|
describe "Summary" SummarySpec.spfffec
|
2017-03-22 00:48:47 +03:00
|
|
|
describe "Interpreter" InterpreterSpec.spec
|
|
|
|
describe "PatchOutput" PatchOutputSpec.spec
|
|
|
|
describe "Range" RangeSpec.spec
|
2017-03-28 01:38:18 +03:00
|
|
|
describe "SES.Myers" SES.Myers.Spec.spec
|
2017-03-22 00:48:47 +03:00
|
|
|
describe "Source" SourceSpec.spec
|
|
|
|
describe "Term" TermSpec.spec
|
|
|
|
describe "TOC" TOCSpec.spec
|
|
|
|
describe "Integration" IntegrationSpec.spec
|
|
|
|
|
2017-04-08 17:30:22 +03:00
|
|
|
|
2017-04-07 19:24:57 +03:00
|
|
|
describe "GitmonClient" GitmonClientSpec.spec
|