focuslist-0.1.0.0: test/Test.hs
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
]