File: Main.hs

package info (click to toggle)
patat 0.15.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,196 kB
  • sloc: haskell: 4,120; makefile: 86; xml: 22; sh: 17
file content (13 lines) | stat: -rw-r--r-- 437 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Main where

import qualified Patat.Presentation.Interactive.Tests
import qualified Patat.Presentation.Read.Tests
import qualified Patat.PrettyPrint.Matrix.Tests
import qualified Test.Tasty                           as Tasty

main :: IO ()
main = Tasty.defaultMain $ Tasty.testGroup "patat"
    [ Patat.Presentation.Interactive.Tests.tests
    , Patat.Presentation.Read.Tests.tests
    , Patat.PrettyPrint.Matrix.Tests.tests
    ]