haskey-0.2.0.0: tests/Integration.hs
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE RankNTypes #-}
module Main (main) where
import Test.Framework (Test, defaultMain)
import qualified Integration.CreateAndOpen
import qualified Integration.WriteOpenRead.Concurrent
tests :: [Test]
tests =
[ Integration.CreateAndOpen.tests
, Integration.WriteOpenRead.Concurrent.tests
]
main :: IO ()
main = defaultMain tests