File: Test.hs

package info (click to toggle)
haskell-termonad 4.5.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 492 kB
  • sloc: haskell: 3,784; makefile: 3
file content (19 lines) | stat: -rw-r--r-- 270 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

module Main where

import Termonad.Prelude

import Test.Tasty (TestTree, defaultMain, testGroup)

main :: IO ()
main = do
  tests <- testsIO
  defaultMain tests

testsIO :: IO TestTree
testsIO = do
  pure $
    testGroup
      "tests"
      [ -- focusListTests
      ]