mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-10 14:16:41 +03:00
56 lines
1.6 KiB
Haskell
56 lines
1.6 KiB
Haskell
{-|
|
|
|
|
The Hledger.Data library allows parsing and querying of C++ ledger-style
|
|
journal files. It generally provides a compatible subset of C++ ledger's
|
|
functionality. This package re-exports all the Hledger.Data.* modules
|
|
(except UTF8, which requires an explicit import.)
|
|
|
|
-}
|
|
|
|
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,
|
|
module Hledger.Data.Ledger,
|
|
module Hledger.Data.Matching,
|
|
module Hledger.Data.Posting,
|
|
module Hledger.Data.TimeLog,
|
|
module Hledger.Data.Transaction,
|
|
module Hledger.Data.Types,
|
|
tests_Hledger_Data
|
|
)
|
|
where
|
|
import Test.HUnit
|
|
|
|
import Hledger.Data.Account
|
|
import Hledger.Data.AccountName
|
|
import Hledger.Data.Amount
|
|
import Hledger.Data.Commodity
|
|
import Hledger.Data.Dates
|
|
import Hledger.Data.Journal
|
|
import Hledger.Data.Ledger
|
|
import Hledger.Data.Matching
|
|
import Hledger.Data.Posting
|
|
import Hledger.Data.TimeLog
|
|
import Hledger.Data.Transaction
|
|
import Hledger.Data.Types
|
|
|
|
tests_Hledger_Data = TestList
|
|
[
|
|
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_Matching
|
|
,tests_Hledger_Data_Posting
|
|
,tests_Hledger_Data_TimeLog
|
|
,tests_Hledger_Data_Transaction
|
|
-- ,tests_Hledger_Data_Types
|
|
]
|