diff options
author | ingo <ingo.kegel@ej-technologies.com> | 2016-01-06 13:39:54 +0100 |
---|---|---|
committer | ingo <ingo.kegel@ej-technologies.com> | 2016-01-06 13:58:30 +0100 |
commit | ddd22fc7652f468f57c5a9dca380743eea53be5d (patch) | |
tree | 93bcf9670ff317e5450cbb501a5f4b091baf8463 /core/src/test/kotlin/model | |
parent | 97b5672ae2ef645c53e9c783dc494860a1eed800 (diff) | |
download | dokka-ddd22fc7652f468f57c5a9dca380743eea53be5d.tar.gz dokka-ddd22fc7652f468f57c5a9dca380743eea53be5d.tar.bz2 dokka-ddd22fc7652f468f57c5a9dca380743eea53be5d.zip |
Linking to a target with underscores did not work
For example, in a link like [MY_VALUE], the link would only try to resolve the text "MY" until the first underscore.
Since the markdown parser parses the link label as [TEXT:MY, EMPH:_, TEXT:VALUE], using the first TEXT child node
is not sufficient.
Diffstat (limited to 'core/src/test/kotlin/model')
-rw-r--r-- | core/src/test/kotlin/model/LinkTest.kt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/core/src/test/kotlin/model/LinkTest.kt b/core/src/test/kotlin/model/LinkTest.kt index c30e1c10..ac49cae6 100644 --- a/core/src/test/kotlin/model/LinkTest.kt +++ b/core/src/test/kotlin/model/LinkTest.kt @@ -25,6 +25,16 @@ public class LinkTest { } } + @Test fun linkToConstantWithUnderscores() { + verifyModel("testdata/links/linkToConstantWithUnderscores.kt") { model -> + with(model.members.single().members.single()) { + assertEquals("Foo", name) + assertEquals(DocumentationNode.Kind.Class, kind) + assertEquals("This is link to [MY_CONSTANT_VALUE -> CompanionObjectProperty:MY_CONSTANT_VALUE]", content.summary.toTestString()) + } + } + } + @Test fun linkToQualifiedMember() { verifyModel("testdata/links/linkToQualifiedMember.kt") { model -> with(model.members.single().members.single()) { |