hledger/hledger-lib/Hledger.hs
Stephen Morgan 8274da81fc cln: tests: Remove test and tests, which are just aliases for testCase
and testGroup.

Replacing these removes a layer of indirection, and reduces the need to
depend on Hledger.Utils.Test.
2021-08-30 16:32:19 -10:00

22 lines
397 B
Haskell

{-# LANGUAGE OverloadedStrings #-}
module Hledger (
module X
,tests_Hledger
)
where
import Hledger.Data as X
import Hledger.Read as X
import Hledger.Reports as X
import Hledger.Query as X
import Hledger.Utils as X
tests_Hledger = testGroup "Hledger" [
tests_Data
,tests_Query
,tests_Read
,tests_Reports
,tests_Utils
]