diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-11-21 15:05:04 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-11-21 15:05:04 +0300 |
commit | 80bde3cb243b324df162a16d23f9dfd3e0ab2597 (patch) | |
tree | df51e7c315769155ca2a87fea6e18e0e5a687c91 /core/src/test | |
parent | 924832f8ae7a38ad7c6b105c04794195bf9d4f9f (diff) | |
download | dokka-80bde3cb243b324df162a16d23f9dfd3e0ab2597.tar.gz dokka-80bde3cb243b324df162a16d23f9dfd3e0ab2597.tar.bz2 dokka-80bde3cb243b324df162a16d23f9dfd3e0ab2597.zip |
Fix find node by signature when linking to extension with Type Param
Diffstat (limited to 'core/src/test')
-rw-r--r-- | core/src/test/kotlin/format/MarkdownFormatTest.kt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/src/test/kotlin/format/MarkdownFormatTest.kt b/core/src/test/kotlin/format/MarkdownFormatTest.kt index 97a8ad4b..5fbd80fb 100644 --- a/core/src/test/kotlin/format/MarkdownFormatTest.kt +++ b/core/src/test/kotlin/format/MarkdownFormatTest.kt @@ -384,6 +384,10 @@ class MarkdownFormatTest { verifyMarkdownNode("receiverReference") } + @Test fun extensionScope() { + verifyMarkdownNodeByName("extensionScope", "test") + } + private fun buildMultiplePlatforms(path: String): DocumentationModule { val module = DocumentationModule("test") val options = DocumentationOptions("", "html", generateIndexPages = false, noStdlibLink = true) |