import Prelude
import Test.HUnit
import Test.Framework.Providers.HUnit (hUnitTestToTests)
import Test.Framework.Runners.Console (defaultMain)

import Hcompta.CLI

main :: IO ()
main = defaultMain $ hUnitTestToTests test_Hcompta_CLI

test_Hcompta_CLI :: Test
test_Hcompta_CLI =
	TestList
	 [ "dummy test" ~:
		assertBool "" $ True
	 ]