blob: 68c4f287afb08852e39c8f19f2b4c475ace96b6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
module TestSuite where
import Test.Framework (defaultMain, testGroup)
import qualified Hakyll.Core.DirectedGraph.Tests
import qualified Hakyll.Core.Identifier.Tests
import qualified Hakyll.Core.Route.Tests
main :: IO ()
main = defaultMain
[ testGroup "Hakyll.Core.DirectedGraph.Tests"
Hakyll.Core.DirectedGraph.Tests.tests
, testGroup "Hakyll.Core.Identifier.Tests"
Hakyll.Core.Identifier.Tests.tests
, testGroup "Hakyll.Core.Route.Tests"
Hakyll.Core.Route.Tests.tests
]
|