File: Main.hs

package info (click to toggle)
haskell-hsini 0.5.2.2-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 80 kB
  • sloc: haskell: 425; makefile: 3
file content (14 lines) | stat: -rw-r--r-- 280 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-- Copyright : 2011-2014 Magnus Therning
-- License   : BSD3
module Main where

import Test.Tasty

import qualified Ini as I
import qualified ReaderI as RI

main :: IO ()
main = defaultMain allTests

allTests :: TestTree
allTests = testGroup "All tests" [I.allTests, RI.allTests]