-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Quick feedback loop for test suites -- -- TestLoop provides an automated execution and code reloading of your -- project's test-suites whenever a haskell source file is modified. To -- get started check out http:github.comromantestloop @package testloop @version 0.1.0.1 module System.TestLoop -- | Parses your project's cabal file to find possible test-suites you may -- have on your project, then it will start a file modification tracking -- and once a file is changed it will run the testsuite automatically. in -- the test-suite's hs-source-dirs setting. -- -- Use this function as the main of you testloop executable. e.g -- --
--   module Main where
--   
--   import System.TestLoop
--   
--   main :: IO ()
--   main = setupTestLoop
--   
setupTestLoop :: IO ()