aboutsummaryrefslogtreecommitdiff
path: root/core/src/test/kotlin/format
diff options
context:
space:
mode:
authorDmitry Jemerov <intelliyole@gmail.com>2016-01-04 13:42:18 +0100
committerDmitry Jemerov <intelliyole@gmail.com>2016-01-04 13:42:18 +0100
commit0260b37dd051fc5d728820fa20b0ad7d94c33c0f (patch)
treefd0d71cc5924564036775b320ee6e25afc899605 /core/src/test/kotlin/format
parentdc4c930d8aab39776c4b5db7ff483075d725ae74 (diff)
parent89a36e0eed4a31856cca0cedb9b67ce79cee5100 (diff)
downloaddokka-0260b37dd051fc5d728820fa20b0ad7d94c33c0f.tar.gz
dokka-0260b37dd051fc5d728820fa20b0ad7d94c33c0f.tar.bz2
dokka-0260b37dd051fc5d728820fa20b0ad7d94c33c0f.zip
Merge pull request #43 from ingokegel/master
Embedded underscores and stars were removed in the output
Diffstat (limited to 'core/src/test/kotlin/format')
-rw-r--r--core/src/test/kotlin/format/HtmlFormatTest.kt6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/src/test/kotlin/format/HtmlFormatTest.kt b/core/src/test/kotlin/format/HtmlFormatTest.kt
index 593dbfe6..8045d38c 100644
--- a/core/src/test/kotlin/format/HtmlFormatTest.kt
+++ b/core/src/test/kotlin/format/HtmlFormatTest.kt
@@ -153,5 +153,11 @@ public class HtmlFormatTest {
htmlService.appendNodes(tempLocation, output, model.members.single().members.filter { it.name == "Bar" })
}
}
+
+ @Test fun uninterpretedEmphasisCharacters() {
+ verifyOutput("testdata/format/uninterpretedEmphasisCharacters.kt", ".html") { model, output ->
+ htmlService.appendNodes(tempLocation, output, model.members.single().members)
+ }
+ }
}