2018-08-15 21:43:29 +03:00
|
|
|
{-# LANGUAGE OverloadedStrings #-}
|
|
|
|
|
2011-06-14 00:46:29 +04:00
|
|
|
module Hledger (
|
2016-02-21 07:12:02 +03:00
|
|
|
module X
|
2018-09-06 23:08:26 +03:00
|
|
|
,tests_Hledger
|
2011-06-14 00:46:29 +04:00
|
|
|
)
|
|
|
|
where
|
2012-05-17 08:21:34 +04:00
|
|
|
|
2018-08-20 16:28:40 +03:00
|
|
|
import Hledger.Data as X
|
|
|
|
import Hledger.Read as X
|
2016-02-21 07:12:02 +03:00
|
|
|
import Hledger.Reports as X
|
2018-08-15 21:43:29 +03:00
|
|
|
import Hledger.Query as X
|
2016-02-21 07:12:02 +03:00
|
|
|
import Hledger.Utils as X
|
2012-05-17 08:21:34 +04:00
|
|
|
|
2018-09-06 23:08:26 +03:00
|
|
|
tests_Hledger = tests "Hledger" [
|
|
|
|
tests_Data
|
|
|
|
,tests_Query
|
|
|
|
,tests_Read
|
|
|
|
,tests_Reports
|
|
|
|
,tests_Utils
|
2018-08-15 21:43:29 +03:00
|
|
|
]
|