mirror of
https://github.com/simonmichael/hledger.git
synced 2024-12-26 20:02:27 +03:00
12 lines
317 B
Haskell
12 lines
317 B
Haskell
{-
|
|
Run the hledger-lib package's unit tests using the tasty test runner.
|
|
-}
|
|
|
|
-- package-qualified import to avoid cabal missing-home-modules warning (and double-building ?)
|
|
{-# LANGUAGE PackageImports #-}
|
|
import "hledger-lib" Hledger (tests_Hledger)
|
|
|
|
import Test.Tasty (defaultMain)
|
|
|
|
main = defaultMain tests_Hledger
|