From 92075236fb1356fe6023edff1e43fe3125b76c18 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Tue, 10 Feb 2015 18:11:15 +0100 Subject: fix handling of triple backticks --- test/src/format/HtmlFormatTest.kt | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test/src/format') diff --git a/test/src/format/HtmlFormatTest.kt b/test/src/format/HtmlFormatTest.kt index e180a86c..7dfa80be 100644 --- a/test/src/format/HtmlFormatTest.kt +++ b/test/src/format/HtmlFormatTest.kt @@ -57,4 +57,10 @@ public class HtmlFormatTest { htmlService.appendNodes(tempLocation, output, model.members.single().members) } } + + Test fun tripleBackticks() { + verifyOutput("test/data/format/tripleBackticks.kt", ".html") { model, output -> + htmlService.appendNodes(tempLocation, output, model.members.single().members) + } + } } -- cgit