hakyll/tests/TestSuite.hs

30 lines
1 KiB
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
import qualified Hakyll.Core.Routes.Tests
2011-02-09 18:28:53 +00:00
import qualified Hakyll.Web.Page.Tests
2011-02-09 18:57:25 +00:00
import qualified Hakyll.Web.RelativizeUrls.Tests
import qualified Hakyll.Web.Template.Tests
2011-03-08 10:03:07 +00:00
import qualified Hakyll.Web.Util.Url.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
, testGroup "Hakyll.Core.Routes.Tests"
Hakyll.Core.Routes.Tests.tests
2011-02-09 18:28:53 +00:00
, testGroup "Hakyll.Web.Page.Tests"
Hakyll.Web.Page.Tests.tests
2011-02-09 18:57:25 +00:00
, testGroup "Hakyll.Web.RelativizeUrls.Tests"
Hakyll.Web.RelativizeUrls.Tests.tests
, testGroup "Hakyll.Web.Template.Tests"
Hakyll.Web.Template.Tests.tests
2011-03-08 10:03:07 +00:00
, testGroup "Hakyll.Web.Util.Url.Tests"
Hakyll.Web.Util.Url.Tests.tests
]