human-friendly-id-gen/src-doctest/Main.hs
Yann Esposito (Yogsototh) 1372c2470e
fixed the doctests
2018-09-13 12:13:11 +02:00

14 lines
285 B
Haskell

import Protolude
import System.FilePath.Glob
import Test.DocTest
main :: IO ()
main = do
files <- glob "src/**/*.hs"
doctest (params <> files)
where
params = [ "-XOverloadedStrings"
, "-XNoImplicitPrelude"
, "-XScopedTypeVariables"
]