aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pandoc.cabal1
-rw-r--r--tests/tables.asciidoc11
-rw-r--r--tests/test-pandoc.hs2
3 files changed, 7 insertions, 7 deletions
diff --git a/pandoc.cabal b/pandoc.cabal
index 002d1671c..3991d2d82 100644
--- a/pandoc.cabal
+++ b/pandoc.cabal
@@ -392,6 +392,7 @@ Test-Suite test-pandoc
Tests.Writers.ConTeXt
Tests.Writers.HTML
Tests.Writers.Markdown
+ Tests.Writers.AsciiDoc
Tests.Writers.LaTeX
Ghc-Options: -rtsopts -Wall -fno-warn-unused-do-bind
Default-Language: Haskell98
diff --git a/tests/tables.asciidoc b/tests/tables.asciidoc
index 38daca192..ba647866a 100644
--- a/tests/tables.asciidoc
+++ b/tests/tables.asciidoc
@@ -52,20 +52,17 @@ Multiline table without caption:
Table without column headers:
[cols=">,<,^,>",]
-|=============================================================================
+|==================
|12 |12 |12 |12
-
|123 |123 |123 |123
-
|1 |1 |1 |1
-|=============================================================================
+|==================
Multiline table without column headers:
[width="78%",cols="^21%,<17%,>20%,42%",]
-|=============================================================================
+|=======================================================================
|First |row |12.0 |Example of a row that spans multiple lines.
-
|Second |row |5.0 |Here's another one. Note the blank line between rows.
-|=============================================================================
+|=======================================================================
diff --git a/tests/test-pandoc.hs b/tests/test-pandoc.hs
index a7d4fca01..80d672589 100644
--- a/tests/test-pandoc.hs
+++ b/tests/test-pandoc.hs
@@ -15,6 +15,7 @@ import qualified Tests.Writers.HTML
import qualified Tests.Writers.Docbook
import qualified Tests.Writers.Native
import qualified Tests.Writers.Markdown
+import qualified Tests.Writers.AsciiDoc
import qualified Tests.Shared
import qualified Tests.Walk
import Text.Pandoc.Shared (inDirectory)
@@ -30,6 +31,7 @@ tests = [ testGroup "Old" Tests.Old.tests
, testGroup "HTML" Tests.Writers.HTML.tests
, testGroup "Docbook" Tests.Writers.Docbook.tests
, testGroup "Markdown" Tests.Writers.Markdown.tests
+ , testGroup "AsciiDoc" Tests.Writers.AsciiDoc.tests
]
, testGroup "Readers"
[ testGroup "LaTeX" Tests.Readers.LaTeX.tests