aboutsummaryrefslogtreecommitdiffstats
path: root/test/Doctest.hs
diff options
context:
space:
mode:
Diffstat (limited to 'test/Doctest.hs')
-rw-r--r--test/Doctest.hs5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/Doctest.hs b/test/Doctest.hs
index 44fecac..1b899c3 100644
--- a/test/Doctest.hs
+++ b/test/Doctest.hs
@@ -1,11 +1,8 @@
module Main where
import Build_doctests (flags, module_sources, pkgs)
-import Data.Foldable (traverse_)
import Test.DocTest (doctest)
main :: IO ()
-main = do
- traverse_ putStrLn args -- optionally print arguments
- doctest args
+main = doctest args
where args = flags ++ pkgs ++ module_sources