File: TestSuite.hs

package info (click to toggle)
haskell-hakyll 3.2.7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 420 kB
  • sloc: haskell: 3,407; xml: 39; makefile: 5
file content (53 lines) | stat: -rw-r--r-- 2,087 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
module Main where

import Test.Framework (defaultMain, testGroup)

import qualified Hakyll.Core.Compiler.Tests
import qualified Hakyll.Core.DependencyAnalyzer.Tests
import qualified Hakyll.Core.Identifier.Tests
import qualified Hakyll.Core.Routes.Tests
import qualified Hakyll.Core.Rules.Tests
import qualified Hakyll.Core.Store.Tests
import qualified Hakyll.Core.UnixFilter.Tests
import qualified Hakyll.Core.Util.Arrow.Tests
import qualified Hakyll.Core.Util.String.Tests
import qualified Hakyll.Web.Page.Tests
import qualified Hakyll.Web.Page.Metadata.Tests
import qualified Hakyll.Web.Template.Tests
import qualified Hakyll.Web.Urls.Tests
import qualified Hakyll.Web.Urls.Relativize.Tests
import qualified Hakyll.Web.Util.Html.Tests

main :: IO ()
main = defaultMain
    [ testGroup "Hakyll.Core.Compiler.Tests"
        Hakyll.Core.Compiler.Tests.tests
    , testGroup "Hakyll.Core.DependencyAnalyzer.Tests"
        Hakyll.Core.DependencyAnalyzer.Tests.tests
    , testGroup "Hakyll.Core.Identifier.Tests"
        Hakyll.Core.Identifier.Tests.tests
    , testGroup "Hakyll.Core.Routes.Tests"
        Hakyll.Core.Routes.Tests.tests
    , testGroup "Hakyll.Core.Rules.Tests"
        Hakyll.Core.Rules.Tests.tests
    , testGroup "Hakyll.Core.Store.Tests"
        Hakyll.Core.Store.Tests.tests
    , testGroup "Hakyll.Core.UnixFilter.Tests"
        Hakyll.Core.UnixFilter.Tests.tests
    , testGroup "Hakyll.Core.Util.Arrow.Tests"
        Hakyll.Core.Util.Arrow.Tests.tests
    , testGroup "Hakyll.Core.Util.String.Tests"
        Hakyll.Core.Util.String.Tests.tests
    , testGroup "Hakyll.Web.Page.Tests"
        Hakyll.Web.Page.Tests.tests
    , testGroup "Hakyll.Web.Page.Metadata.Tests"
        Hakyll.Web.Page.Metadata.Tests.tests
    , testGroup "Hakyll.Web.Template.Tests"
        Hakyll.Web.Template.Tests.tests
    , testGroup "Hakyll.Web.Urls.Tests"
        Hakyll.Web.Urls.Tests.tests
    , testGroup "Hakyll.Web.Urls.Relativize.Tests"
        Hakyll.Web.Urls.Relativize.Tests.tests
    , testGroup "Hakyll.Web.Util.Html.Tests"
        Hakyll.Web.Util.Html.Tests.tests
    ]