some import cleanups

This commit is contained in:
Simon Michael 2008-10-02 21:47:11 +00:00
parent dab15c83ff
commit 5cb1ea228f
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
module Options
module Options (parseOptions, parsePatternArgs, wildcard, Flag(..), usage, ledgerFilePath)
where
import System.Console.GetOpt
import System.Directory

View File

@ -47,8 +47,8 @@ import qualified Data.Map as Map (lookup)
import Options
import Models
import Parse
import Tests
import Parse (parseLedgerAndDo, parseLedgerFile)
import Tests (hunit, quickcheck)
import Utils hiding (test)
@ -69,8 +69,8 @@ type Command = [Flag] -> (Regex,Regex) -> IO ()
selftest :: Command
selftest opts pats = do
Tests.hunit
Tests.quickcheck
hunit
quickcheck
return ()
print_ :: Command