concurrent-extra-0.2: Control/Concurrent/Timeout/Test.hs
{-# LANGUAGE NoImplicitPrelude
, UnicodeSyntax
#-}
module Control.Concurrent.Timeout.Test ( tests ) where
-------------------------------------------------------------------------------
-- Imports
-------------------------------------------------------------------------------
-- from base:
import Control.Concurrent ( )
-- from base-unicode-symbols:
import Prelude.Unicode ( )
-- from concurrent-extra:
import Control.Concurrent.Timeout ( )
import TestUtils ( )
-- from HUnit:
import Test.HUnit ( )
-- from test-framework:
import Test.Framework ( Test )
-- from test-framework-hunit:
import Test.Framework.Providers.HUnit ( )
-------------------------------------------------------------------------------
-- Tests for timeout
-------------------------------------------------------------------------------
tests ∷ [Test]
tests = []
-- The End ---------------------------------------------------------------------