shellcheck/test/doctests.hs
2018-09-10 19:09:28 +03:00

12 lines
255 B
Haskell

module Main where
import Build_doctests (flags, pkgs, module_sources)
import Data.Foldable (traverse_)
import Test.DocTest (doctest)
main :: IO ()
main = do
traverse_ putStrLn args
doctest args
where
args = flags ++ pkgs ++ module_sources