File: Test.hs

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

module Main where

import Test.Tasty (TestTree, defaultMain, testGroup)

import Test.FocusList (focusListTestsIO)

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

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