module Driver where import qualified Discovery import Test.Tasty main :: IO () main = defaultMain =<< testTree where testTree :: IO TestTree testTree = do tests <- Discovery.tests pure $ testGroup "haddock-use-refs" [ tests ]