lazy-scope-0.0.1: test/Driver.hs
module Driver where
import qualified Discovery
import Relude
import Test.Tasty
main :: IO ()
main = defaultMain =<< testTree
where
testTree :: IO TestTree
testTree = do
tests <- Discovery.tests
pure $ testGroup "bytestring-lazy" [ tests ]