summaryrefslogtreecommitdiff
path: root/tests/TestSuite.hs
blob: 4244bc9a7b023fc662623a1f4fdbe9c179f99807 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--------------------------------------------------------------------------------
module Main
    ( main
    ) where


--------------------------------------------------------------------------------
import Test.Framework (defaultMain)


--------------------------------------------------------------------------------
import qualified Hakyll.Core.Dependencies.Tests
import qualified Hakyll.Core.Provider.Tests
import qualified Hakyll.Web.Template.Tests


--------------------------------------------------------------------------------
main :: IO ()
main = defaultMain
    [ Hakyll.Core.Dependencies.Tests.tests
    , Hakyll.Core.Provider.Tests.tests
    , Hakyll.Web.Template.Tests.tests
    ]