aboutsummaryrefslogtreecommitdiff
path: root/test/Tests/Old.hs
diff options
context:
space:
mode:
Diffstat (limited to 'test/Tests/Old.hs')
-rw-r--r--test/Tests/Old.hs13
1 files changed, 7 insertions, 6 deletions
diff --git a/test/Tests/Old.hs b/test/Tests/Old.hs
index 9ae10261e..ba6947eda 100644
--- a/test/Tests/Old.hs
+++ b/test/Tests/Old.hs
@@ -267,12 +267,13 @@ writerTests pandocPath format
extendedWriterTests :: FilePath -> String -> [TestTree]
extendedWriterTests pandocPath format
= writerTests pandocPath format ++
- [ test pandocPath
- "tables"
- opts
- ("tables" </> "planets.native")
- ("tables" </> "planets" <.> format)
- ]
+ let testForTable name =
+ test pandocPath
+ (name ++ " table")
+ opts
+ ("tables" </> name <.> "native")
+ ("tables" </> name <.> format)
+ in map testForTable ["planets", "nordics"]
where
opts = ["-r", "native", "-w", format, "--columns=78",
"--variable", "pandoc-version="]