File: Spec.hs

package info (click to toggle)
haskell-microstache 1.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 172 kB
  • sloc: haskell: 971; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 259 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Main (main) where

import Test.Hspec

import qualified Text.Microstache.ParserSpec as P
import qualified Text.Microstache.RenderSpec as R
import qualified Text.Microstache.TypeSpec as T

main :: IO ()
main = hspec $ do
    P.spec
    R.spec
    T.spec