packages feed

retry-io-classes-0.1.0.0: test/Main.hs

module Main
    ( main
    ) where


-------------------------------------------------------------------------------
import           Test.Tasty
-------------------------------------------------------------------------------
import qualified Tests.Control.Retry
-------------------------------------------------------------------------------



main :: IO ()
main = defaultMain tests


-------------------------------------------------------------------------------
tests :: TestTree
tests = testGroup "retry"
  [ Tests.Control.Retry.tests
  ]