hakyll/tests/TestSuite.hs

18 lines
514 B
Haskell
Raw Normal View History

module TestSuite where
import Test.Framework (defaultMain, testGroup)
import qualified Hakyll.Core.DirectedGraph.Tests
2010-12-23 16:19:21 +00:00
import qualified Hakyll.Core.Identifier.Tests
2010-12-23 18:20:05 +00:00
import qualified Hakyll.Core.Route.Tests
main :: IO ()
main = defaultMain
[ testGroup "Hakyll.Core.DirectedGraph.Tests"
Hakyll.Core.DirectedGraph.Tests.tests
2010-12-23 16:19:21 +00:00
, testGroup "Hakyll.Core.Identifier.Tests"
Hakyll.Core.Identifier.Tests.tests
2010-12-23 18:20:05 +00:00
, testGroup "Hakyll.Core.Route.Tests"
Hakyll.Core.Route.Tests.tests
]