2010-05-20 03:08:53 +04:00
|
|
|
{-|
|
|
|
|
|
2010-07-13 10:30:06 +04:00
|
|
|
The Hledger.Data library allows parsing and querying of C++ ledger-style
|
|
|
|
journal files. It generally provides a compatible subset of C++ ledger's
|
2011-01-21 04:24:51 +03:00
|
|
|
functionality. This package re-exports all the Hledger.Data.* modules
|
|
|
|
(except UTF8, which requires an explicit import.)
|
2010-05-20 03:08:53 +04:00
|
|
|
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Hledger.Data (
|
|
|
|
module Hledger.Data.Account,
|
|
|
|
module Hledger.Data.AccountName,
|
|
|
|
module Hledger.Data.Amount,
|
|
|
|
module Hledger.Data.Commodity,
|
|
|
|
module Hledger.Data.Dates,
|
|
|
|
module Hledger.Data.Journal,
|
2011-06-05 22:36:32 +04:00
|
|
|
module Hledger.Data.Ledger,
|
2010-05-20 03:08:53 +04:00
|
|
|
module Hledger.Data.Posting,
|
2014-03-26 04:10:30 +04:00
|
|
|
module Hledger.Data.RawOptions,
|
2010-05-20 03:08:53 +04:00
|
|
|
module Hledger.Data.TimeLog,
|
2011-06-05 22:36:32 +04:00
|
|
|
module Hledger.Data.Transaction,
|
2010-05-20 03:08:53 +04:00
|
|
|
module Hledger.Data.Types,
|
|
|
|
tests_Hledger_Data
|
|
|
|
)
|
|
|
|
where
|
2011-05-28 08:11:44 +04:00
|
|
|
import Test.HUnit
|
|
|
|
|
2010-05-20 03:08:53 +04:00
|
|
|
import Hledger.Data.Account
|
|
|
|
import Hledger.Data.AccountName
|
|
|
|
import Hledger.Data.Amount
|
|
|
|
import Hledger.Data.Commodity
|
|
|
|
import Hledger.Data.Dates
|
|
|
|
import Hledger.Data.Journal
|
2011-06-05 22:36:32 +04:00
|
|
|
import Hledger.Data.Ledger
|
2010-05-20 03:08:53 +04:00
|
|
|
import Hledger.Data.Posting
|
2014-03-26 04:10:30 +04:00
|
|
|
import Hledger.Data.RawOptions
|
2010-05-20 03:08:53 +04:00
|
|
|
import Hledger.Data.TimeLog
|
2011-06-05 22:36:32 +04:00
|
|
|
import Hledger.Data.Transaction
|
2010-05-20 03:08:53 +04:00
|
|
|
import Hledger.Data.Types
|
|
|
|
|
2014-03-26 04:10:30 +04:00
|
|
|
tests_Hledger_Data :: Test
|
2010-05-20 03:08:53 +04:00
|
|
|
tests_Hledger_Data = TestList
|
|
|
|
[
|
2010-12-27 23:26:22 +03:00
|
|
|
tests_Hledger_Data_Account
|
|
|
|
,tests_Hledger_Data_AccountName
|
|
|
|
,tests_Hledger_Data_Amount
|
|
|
|
,tests_Hledger_Data_Commodity
|
|
|
|
,tests_Hledger_Data_Dates
|
|
|
|
,tests_Hledger_Data_Journal
|
|
|
|
,tests_Hledger_Data_Ledger
|
|
|
|
,tests_Hledger_Data_Posting
|
|
|
|
,tests_Hledger_Data_TimeLog
|
|
|
|
,tests_Hledger_Data_Transaction
|
|
|
|
-- ,tests_Hledger_Data_Types
|
2010-05-20 03:08:53 +04:00
|
|
|
]
|