diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2017-10-27 20:28:29 -0700 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2017-10-27 20:28:29 -0700 |
| commit | ff16db1aa306113132cc6cfaa70791a0db75e0a5 (patch) | |
| tree | b5a016232c62645a1276c30eb4b69356662c060e /test/Tests/Command.hs | |
| parent | bf54a6335a0d2ae3fdf03e60a84448476f651d59 (diff) | |
Automatic reformating by stylish-haskell.
Diffstat (limited to 'test/Tests/Command.hs')
| -rw-r--r-- | test/Tests/Command.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Tests/Command.hs b/test/Tests/Command.hs index 608b00b18..4999ff45a 100644 --- a/test/Tests/Command.hs +++ b/test/Tests/Command.hs @@ -2,20 +2,20 @@ module Tests.Command (findPandoc, runTest, tests) where import Data.Algorithm.Diff +import qualified Data.ByteString as BS import Data.List (isSuffixOf) import Prelude hiding (readFile) import System.Directory import System.Exit import System.FilePath (joinPath, splitDirectories, takeDirectory, (</>)) +import System.IO (hPutStr, stderr) +import System.IO.Unsafe (unsafePerformIO) import System.Process -import System.IO (stderr, hPutStr) import Test.Tasty import Test.Tasty.HUnit import Tests.Helpers import Text.Pandoc -import qualified Data.ByteString as BS import qualified Text.Pandoc.UTF8 as UTF8 -import System.IO.Unsafe (unsafePerformIO) -- TODO temporary -- | Run a test with normalize function, return True if test passed. runTest :: String -- ^ Title of test |
