relude-0.1.0: test/Doctest.hs
{-
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
License: MIT
-}
module Main (main) where
import System.FilePath.Glob (glob)
import Test.DocTest (doctest)
main :: IO ()
main = do
sourceFiles <- glob "src/**/*.hs"
doctest $ "-XNoImplicitPrelude" : sourceFiles