sourcephile
/
git
/
comptalang.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Ajout : CLI.Command.Balance : --format {open,close}.
[comptalang.git]
/
cli
/
Test
/
Main.hs
1
import Prelude
2
import Test.HUnit
3
import Test.Framework.Providers.HUnit (hUnitTestToTests)
4
import Test.Framework.Runners.Console (defaultMain)
5
6
import Hcompta.CLI
7
8
main :: IO ()
9
main = defaultMain $ hUnitTestToTests test_Hcompta_CLI
10
11
test_Hcompta_CLI :: Test
12
test_Hcompta_CLI =
13
TestList
14
[ "dummy test" ~:
15
assertBool "" $ True
16
]