aboutsummaryrefslogtreecommitdiff
path: root/test/src/format
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2015-02-10 19:42:30 +0100
committerDmitry Jemerov <yole@jetbrains.com>2015-02-10 19:42:30 +0100
commitc5e98b1481c48954b6336916eca3644adb5f9372 (patch)
tree026df0fbc1aaf1f0fe96143d32571e8374825d75 /test/src/format
parentebbf265dbe9d5fe37e56c9baa567edaf21dd16fa (diff)
downloaddokka-c5e98b1481c48954b6336916eca3644adb5f9372.tar.gz
dokka-c5e98b1481c48954b6336916eca3644adb5f9372.tar.bz2
dokka-c5e98b1481c48954b6336916eca3644adb5f9372.zip
fix links to supertypes
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 53c1a39d..1e469b91 100644
--- a/test/src/format/HtmlFormatTest.kt
+++ b/test/src/format/HtmlFormatTest.kt
@@ -75,4 +75,10 @@ public class HtmlFormatTest {
htmlService.appendNodes(tempLocation, output, model.members.single().members)
}
}
+
+ Test fun typeLink() {
+ verifyOutput("test/data/format/typeLink.kt", ".html") { model, output ->
+ htmlService.appendNodes(tempLocation, output, model.members.single().members.filter { it.name == "Bar"} )
+ }
+ }
}