mirror of
https://github.com/simonmichael/hledger.git
synced 2025-01-07 11:19:32 +03:00
10 lines
213 B
Haskell
10 lines
213 B
Haskell
{-# LANGUAGE PackageImports #-}
|
|
|
|
import Data.List
|
|
import "Glob" System.FilePath.Glob
|
|
import Test.DocTest
|
|
|
|
main = do
|
|
fs <- ("Hledger.hs" :) . filter (not . isInfixOf "/.") <$> glob "Hledger/**/*.hs"
|
|
doctest fs
|