aboutsummaryrefslogtreecommitdiff
path: root/dottydoc/jvm/test
diff options
context:
space:
mode:
Diffstat (limited to 'dottydoc/jvm/test')
-rw-r--r--dottydoc/jvm/test/TestSimpleComments.scala29
-rw-r--r--dottydoc/jvm/test/TestWhitelistedStdLib.scala (renamed from dottydoc/jvm/test/TestCommentParsing.scala)3
2 files changed, 30 insertions, 2 deletions
diff --git a/dottydoc/jvm/test/TestSimpleComments.scala b/dottydoc/jvm/test/TestSimpleComments.scala
new file mode 100644
index 000000000..48cdecec0
--- /dev/null
+++ b/dottydoc/jvm/test/TestSimpleComments.scala
@@ -0,0 +1,29 @@
+package dotty.tools
+package dottydoc
+
+import org.junit.Test
+import org.junit.Assert._
+
+class TestSimpleComments extends DottyTest {
+
+ @Test def simpleComment = {
+ val source =
+ """
+ |package scala
+ |
+ |/** Hello, world! */
+ |trait HelloWorld
+ """.stripMargin
+
+ checkCompile(source) { doc =>
+ val traitCmt = doc
+ .packages("scala")
+ .children.find(_.path.mkString(".") == "scala.HelloWorld")
+ .flatMap(_.comment.map(_.body))
+ .get
+
+ assertEquals(traitCmt, "<p>Hello, world!</p>")
+ }
+ }
+
+}
diff --git a/dottydoc/jvm/test/TestCommentParsing.scala b/dottydoc/jvm/test/TestWhitelistedStdLib.scala
index 12f60f6a6..763f41370 100644
--- a/dottydoc/jvm/test/TestCommentParsing.scala
+++ b/dottydoc/jvm/test/TestWhitelistedStdLib.scala
@@ -9,8 +9,7 @@ class TestWhitelistedCollections extends DottyTest {
checkCompile(WhitelistedStandardLib.files) { doc =>
val array = doc
.packages("scala")
- .children
- .find(_.path.mkString(".") == "scala.Array")
+ .children.find(_.path.mkString(".") == "scala.Array")
.get
assert(array.comment.get.body.length > 0)