aboutsummaryrefslogtreecommitdiff
path: root/test/src
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2015-01-16 13:25:16 +0100
committerDmitry Jemerov <yole@jetbrains.com>2015-01-16 13:25:16 +0100
commitd093fc192beab22086506240fbe7747663cc73fa (patch)
treec7c858dfbf29b5b3764be1252467c82c6e6fb31a /test/src
parentd75cc63e9b1edc229fad225956ba44fa433e2d0e (diff)
downloaddokka-d093fc192beab22086506240fbe7747663cc73fa.tar.gz
dokka-d093fc192beab22086506240fbe7747663cc73fa.tar.bz2
dokka-d093fc192beab22086506240fbe7747663cc73fa.zip
don't generate broken links if a doc comment references an unresolved symbol
Diffstat (limited to 'test/src')
-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 47fe9c4e..dfecb4d4 100644
--- a/test/src/format/HtmlFormatTest.kt
+++ b/test/src/format/HtmlFormatTest.kt
@@ -33,4 +33,10 @@ public class HtmlFormatTest {
htmlService.appendNodes(tempLocation, output, model.members.single().members)
}
}
+
+ Test fun brokenLink() {
+ verifyOutput("test/data/format/brokenLink.kt", ".html") { model, output ->
+ htmlService.appendNodes(tempLocation, output, model.members.single().members)
+ }
+ }
}