From badba07c1d151ff5a9cf623abecf7f2c906b5931 Mon Sep 17 00:00:00 2001 From: Ilya Ryzhenkov Date: Mon, 22 Dec 2014 18:31:01 +0300 Subject: Fix trailing EOL breaking markdown parser, remove multi-doc test as unsupported. --- test/src/model/CommentTest.kt | 9 --------- 1 file changed, 9 deletions(-) (limited to 'test/src/model') diff --git a/test/src/model/CommentTest.kt b/test/src/model/CommentTest.kt index 51bcc735..2d87b928 100644 --- a/test/src/model/CommentTest.kt +++ b/test/src/model/CommentTest.kt @@ -30,15 +30,6 @@ public class CommentTest { } } - Test fun multipleDocs() { - verifyModel("test/data/comments/multipleDocs.kt") { model -> - with(model.members.single().members.single()) { - assertEquals("doc1", content.summary.toTestString()) - assertEquals("doc2\ndoc3", content.description.toTestString()) - } - } - } - Test fun multilineDocWithComment() { verifyModel("test/data/comments/multilineDocWithComment.kt") { model -> with(model.members.single().members.single()) { -- cgit