hakyll/tests/TestSuite.hs
Jasper Van der Jeugt 4bdd93b331 Add Route code
2010-12-23 19:20:05 +01:00

17 lines
514 B
Haskell

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
]