aboutsummaryrefslogtreecommitdiff
path: root/test/src/format
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2015-02-06 17:39:41 +0100
committerDmitry Jemerov <yole@jetbrains.com>2015-02-06 17:39:41 +0100
commit3fe73a9430c1b782c5891fb61dd5565ab7ee9178 (patch)
treec9a41e2cbcd2579e6d65d30a8f47ad2085d70853 /test/src/format
parentb78e3bb6c7d689bc1650088096461e687ee6441f (diff)
downloaddokka-3fe73a9430c1b782c5891fb61dd5565ab7ee9178.tar.gz
dokka-3fe73a9430c1b782c5891fb61dd5565ab7ee9178.tar.bz2
dokka-3fe73a9430c1b782c5891fb61dd5565ab7ee9178.zip
handle parenthesis tokens in markdown
Diffstat (limited to 'test/src/format')
-rw-r--r--test/src/format/HtmlFormatTest.kt6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/src/format/HtmlFormatTest.kt b/test/src/format/HtmlFormatTest.kt
index 0170d148..251c7074 100644
--- a/test/src/format/HtmlFormatTest.kt
+++ b/test/src/format/HtmlFormatTest.kt
@@ -45,4 +45,10 @@ public class HtmlFormatTest {
htmlService.appendNodes(tempLocation, output, model.members.single().members)
}
}
+
+ Test fun parenthesis() {
+ verifyOutput("test/data/format/parenthesis.kt", ".html") { model, output ->
+ htmlService.appendNodes(tempLocation, output, model.members.single().members)
+ }
+ }
}