aboutsummaryrefslogtreecommitdiff
path: root/test/src/format
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2014-12-30 17:41:14 +0100
committerDmitry Jemerov <yole@jetbrains.com>2014-12-30 17:41:47 +0100
commit716483c2f20e4af1951342f2acc9a231fcbeab3b (patch)
tree84cd1011021bb6ef38f9567d80805edf17ecc2d7 /test/src/format
parent0e70fa4ca021bff09e7d9ce64269a4e698512af5 (diff)
downloaddokka-716483c2f20e4af1951342f2acc9a231fcbeab3b.tar.gz
dokka-716483c2f20e4af1951342f2acc9a231fcbeab3b.tar.bz2
dokka-716483c2f20e4af1951342f2acc9a231fcbeab3b.zip
render annotation classes correctly
Diffstat (limited to 'test/src/format')
-rw-r--r--test/src/format/MarkdownFormatTest.kt6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/src/format/MarkdownFormatTest.kt b/test/src/format/MarkdownFormatTest.kt
index 531980de..a1fc7ac1 100644
--- a/test/src/format/MarkdownFormatTest.kt
+++ b/test/src/format/MarkdownFormatTest.kt
@@ -25,4 +25,10 @@ public class MarkdownFormatTest {
markdownService.appendNodes(tempLocation, output, model.members.single().members)
}
}
+
+ Test fun annotationClass() {
+ verifyOutput("test/data/format/annotationClass.kt", ".md") { model, output ->
+ markdownService.appendNodes(tempLocation, output, model.members.single().members)
+ }
+ }
}