From ee824b90249fd1d6d868af998c6826df31ab557b Mon Sep 17 00:00:00 2001 From: Simon Ogorodnik Date: Tue, 1 Nov 2016 18:44:23 +0300 Subject: Fix for GH #95 , KT-13300 : dokka eats apostrophes --- core/src/test/kotlin/model/CommentTest.kt | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'core/src/test/kotlin/model') diff --git a/core/src/test/kotlin/model/CommentTest.kt b/core/src/test/kotlin/model/CommentTest.kt index 5dfd1157..457affee 100644 --- a/core/src/test/kotlin/model/CommentTest.kt +++ b/core/src/test/kotlin/model/CommentTest.kt @@ -76,6 +76,14 @@ public class CommentTest { } } + @Test fun quotes() { + verifyModel("testdata/comments/quotes.kt") { model -> + with(model.members.single().members.single()) { + assertEquals("it's \"useful\"", content.summary.toTestString()) + } + } + } + @Test fun section1() { verifyModel("testdata/comments/section1.kt") { model -> with(model.members.single().members.single()) { -- cgit