hledger/hledger-lib/Hledger.hs
Simon Michael 3ee6a351f3 big query/tests/show refactoring
- use new query system for command line too, filterspec is no more
- move unit tests near the code they test, run them in bottom up order, add more
- more precise Show instances, used for debugging not ui
2012-05-27 18:14:20 +00:00

25 lines
540 B
Haskell

module Hledger (
module Hledger.Data
,module Hledger.Data.Query
,module Hledger.Read
,module Hledger.Reports
,module Hledger.Utils
,tests_Hledger
)
where
import Test.HUnit
import Hledger.Data
import Hledger.Data.Query
import Hledger.Read hiding (samplejournal)
import Hledger.Reports
import Hledger.Utils
tests_Hledger = TestList
[
tests_Hledger_Data
,tests_Hledger_Data_Query
,tests_Hledger_Read
,tests_Hledger_Reports
]