tk2mqtt/test/doctest/Doctest.hs

10 lines
196 B
Haskell

-- | Rn the doctest executable
module Main where
import System.Process (callProcess)
doctest :: [String] -> IO ()
doctest = callProcess "doctest"
main :: IO ()
main = doctest ["--fast", "src"]