mirror of
https://github.com/simonmichael/hledger.git
synced 2025-01-04 00:07:29 +03:00
11 lines
328 B
Haskell
11 lines
328 B
Haskell
import Hledger (tests_Hledger)
|
|
import System.Environment (getArgs)
|
|
import Test.Framework.Providers.HUnit (hUnitTestToTests)
|
|
import Test.Framework.Runners.Console (defaultMainWithArgs)
|
|
|
|
main :: IO ()
|
|
main = do
|
|
args <- getArgs
|
|
let args' = "--hide-successes" : args
|
|
defaultMainWithArgs (hUnitTestToTests tests_Hledger) args'
|