mirror of
https://github.com/simonmichael/hledger.git
synced 2024-12-26 20:02:27 +03:00
59 lines
1.6 KiB
Haskell
59 lines
1.6 KiB
Haskell
{-|
|
|
|
|
The Ledger library allows parsing and querying of ledger files. It
|
|
generally provides a compatible subset of C++ ledger's functionality.
|
|
This package re-exports all the Ledger.* modules.
|
|
|
|
-}
|
|
|
|
module Ledger (
|
|
module Ledger.Account,
|
|
module Ledger.AccountName,
|
|
module Ledger.Amount,
|
|
module Ledger.Commodity,
|
|
module Ledger.Dates,
|
|
module Ledger.IO,
|
|
module Ledger.Transaction,
|
|
module Ledger.Ledger,
|
|
module Ledger.Parse,
|
|
module Ledger.Journal,
|
|
module Ledger.Posting,
|
|
module Ledger.TimeLog,
|
|
module Ledger.Types,
|
|
module Ledger.Utils,
|
|
tests_Ledger
|
|
)
|
|
where
|
|
import Ledger.Account
|
|
import Ledger.AccountName
|
|
import Ledger.Amount
|
|
import Ledger.Commodity
|
|
import Ledger.Dates
|
|
import Ledger.IO
|
|
import Ledger.Transaction
|
|
import Ledger.Ledger
|
|
import Ledger.Parse
|
|
import Ledger.Journal
|
|
import Ledger.Posting
|
|
import Ledger.TimeLog
|
|
import Ledger.Types
|
|
import Ledger.Utils
|
|
|
|
tests_Ledger = TestList
|
|
[
|
|
-- Ledger.Account.tests_Account
|
|
-- ,Ledger.AccountName.tests_AccountName
|
|
Ledger.Amount.tests_Amount
|
|
-- ,Ledger.Commodity.tests_Commodity
|
|
,Ledger.Dates.tests_Dates
|
|
-- ,Ledger.IO.tests_IO
|
|
,Ledger.Transaction.tests_Transaction
|
|
-- ,Ledger.Ledger.tests_Ledger
|
|
,Ledger.Parse.tests_Parse
|
|
-- ,Ledger.Journal.tests_Journal
|
|
-- ,Ledger.Posting.tests_Posting
|
|
-- ,Ledger.TimeLog.tests_TimeLog
|
|
-- ,Ledger.Types.tests_Types
|
|
-- ,Ledger.Utils.tests_Utils
|
|
]
|