2015-08-13 21:22:40 +03:00
|
|
|
{-|
|
|
|
|
Re-export the modules of the hledger-ui program.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Hledger.UI (
|
|
|
|
module Hledger.UI.Main,
|
2015-08-28 22:33:33 +03:00
|
|
|
module Hledger.UI.UIOptions,
|
2015-08-23 03:46:57 +03:00
|
|
|
module Hledger.UI.Theme,
|
2015-08-13 21:22:40 +03:00
|
|
|
tests_Hledger_UI
|
|
|
|
)
|
|
|
|
where
|
|
|
|
import Test.HUnit
|
|
|
|
|
|
|
|
import Hledger.UI.Main
|
2015-08-28 22:33:33 +03:00
|
|
|
import Hledger.UI.UIOptions
|
2015-08-23 03:46:57 +03:00
|
|
|
import Hledger.UI.Theme
|
2015-08-13 21:22:40 +03:00
|
|
|
|
|
|
|
tests_Hledger_UI :: Test
|
|
|
|
tests_Hledger_UI = TestList
|
|
|
|
[
|
|
|
|
-- tests_Hledger_UI_Main
|
2015-08-28 22:33:33 +03:00
|
|
|
-- tests_Hledger_UI_UIOptions
|
2015-08-13 21:22:40 +03:00
|
|
|
]
|