hakyll/tests/TestSuite.hs

30 lines
972 B
Haskell
Raw Normal View History

2012-11-19 13:59:55 +00:00
--------------------------------------------------------------------------------
module Main
( main
) where
2012-11-19 13:59:55 +00:00
--------------------------------------------------------------------------------
2012-11-20 10:36:45 +00:00
import Test.Framework (defaultMain)
2012-11-19 13:59:55 +00:00
--------------------------------------------------------------------------------
import qualified Hakyll.Core.Dependencies.Tests
2012-11-20 10:36:45 +00:00
import qualified Hakyll.Core.Identifier.Tests
2012-11-19 13:59:55 +00:00
import qualified Hakyll.Core.Provider.Tests
2012-11-20 10:36:45 +00:00
import qualified Hakyll.Core.Store.Tests
import qualified Hakyll.Core.UnixFilter.Tests
import qualified Hakyll.Web.Template.Tests
2012-11-19 13:59:55 +00:00
--------------------------------------------------------------------------------
main :: IO ()
main = defaultMain
2012-11-19 13:59:55 +00:00
[ Hakyll.Core.Dependencies.Tests.tests
2012-11-20 10:36:45 +00:00
, Hakyll.Core.Identifier.Tests.tests
2012-11-19 13:59:55 +00:00
, Hakyll.Core.Provider.Tests.tests
2012-11-20 10:36:45 +00:00
, Hakyll.Core.Store.Tests.tests
, Hakyll.Core.UnixFilter.Tests.tests
2012-11-19 13:59:55 +00:00
, Hakyll.Web.Template.Tests.tests
]