File: tests.hs

package info (click to toggle)
haskell-yesod-static 1.6.1.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 200 kB
  • sloc: haskell: 1,381; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 317 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{-# LANGUAGE OverloadedStrings #-}

import Test.Hspec
import YesodStaticTest (specs)
import EmbedProductionTest (embedProductionSpecs)
import EmbedDevelTest (embedDevSpecs)
import FileGeneratorTests (fileGenSpecs)

main :: IO ()
main = hspec $ do
    specs
    embedProductionSpecs
    embedDevSpecs
    fileGenSpecs