summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPhilippus Baalman <philippus@gmail.com>2017-02-08 09:56:49 +0100
committerPhilippus Baalman <philippus@gmail.com>2017-02-08 09:56:49 +0100
commita019082bc33c35dc9e8f53c0a724d88bf56514ed (patch)
treea023a7a5943d7911b315e76f67c80969a8bcb8d2 /test
parent7311a29a992db1d3d16a73a9c49c80b0a4383103 (diff)
downloadscala-a019082bc33c35dc9e8f53c0a724d88bf56514ed.tar.gz
scala-a019082bc33c35dc9e8f53c0a724d88bf56514ed.tar.bz2
scala-a019082bc33c35dc9e8f53c0a724d88bf56514ed.zip
SI-9704 don't add a closed HtmlTag if it is already closed
Diffstat (limited to 'test')
-rw-r--r--test/scaladoc/run/SI-9704.check4
-rw-r--r--test/scaladoc/run/SI-9704.scala22
2 files changed, 26 insertions, 0 deletions
diff --git a/test/scaladoc/run/SI-9704.check b/test/scaladoc/run/SI-9704.check
new file mode 100644
index 0000000000..5a73befd9b
--- /dev/null
+++ b/test/scaladoc/run/SI-9704.check
@@ -0,0 +1,4 @@
+Chain(List(Chain(List(Text(Demonstrates a scala issue in which the closing link tag is duplicated), Text(
+), HtmlTag(<a href="https://link">title</a>), Text(
+), Text()))))
+Done.
diff --git a/test/scaladoc/run/SI-9704.scala b/test/scaladoc/run/SI-9704.scala
new file mode 100644
index 0000000000..e6f071704e
--- /dev/null
+++ b/test/scaladoc/run/SI-9704.scala
@@ -0,0 +1,22 @@
+import scala.tools.nsc.doc.model._
+import scala.tools.partest.ScaladocModelTest
+
+object Test extends ScaladocModelTest {
+ override def code = """
+ object Foo {
+ /**
+ * Demonstrates a scala issue in which the closing link tag is duplicated
+ * <a href="https://link">title</a>
+ */
+ def bar = ???
+ }
+ """
+
+ def scaladocSettings = ""
+
+ def testModel(root: Package) = {
+ import access._
+ val thing = root._object("Foo")._method("bar")
+ println(thing.comment.get.short)
+ }
+}