aboutsummaryrefslogtreecommitdiff
path: root/test/src/format/HtmlFormatTest.kt
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2015-02-09 21:05:56 +0100
committerDmitry Jemerov <yole@jetbrains.com>2015-02-09 21:05:56 +0100
commit25592f52ea3e70e183a2a72bc411346b1650ed9a (patch)
treeaeee47c29bf4ecb5ef614ef164d1c7f331d194e7 /test/src/format/HtmlFormatTest.kt
parent0b6f2b22f972b8e62f1d5eece72aea93043ffb90 (diff)
downloaddokka-25592f52ea3e70e183a2a72bc411346b1650ed9a.tar.gz
dokka-25592f52ea3e70e183a2a72bc411346b1650ed9a.tar.bz2
dokka-25592f52ea3e70e183a2a72bc411346b1650ed9a.zip
correctly render @see links
Diffstat (limited to 'test/src/format/HtmlFormatTest.kt')
-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 251c7074..e180a86c 100644
--- a/test/src/format/HtmlFormatTest.kt
+++ b/test/src/format/HtmlFormatTest.kt
@@ -51,4 +51,10 @@ public class HtmlFormatTest {
htmlService.appendNodes(tempLocation, output, model.members.single().members)
}
}
+
+ Test fun see() {
+ verifyOutput("test/data/format/see.kt", ".html") { model, output ->
+ htmlService.appendNodes(tempLocation, output, model.members.single().members)
+ }
+ }
}