summaryrefslogtreecommitdiff
path: root/test/scaladoc/run/SI-5780.scala
diff options
context:
space:
mode:
authorJosh Suereth <Joshua.Suereth@gmail.com>2012-07-07 14:36:27 -0700
committerJosh Suereth <Joshua.Suereth@gmail.com>2012-07-07 14:36:27 -0700
commit7ca925e821ea04601d90313ce9aeec6863bf50f1 (patch)
treea2405229ff274e238f33e5b0d98be499d9b922ad /test/scaladoc/run/SI-5780.scala
parent300cace2b9473ddbdab762d49f9d39f7347081ff (diff)
parentc410b57d55ee10b565356b8595744a804fd2fa2f (diff)
downloadscala-7ca925e821ea04601d90313ce9aeec6863bf50f1.tar.gz
scala-7ca925e821ea04601d90313ce9aeec6863bf50f1.tar.bz2
scala-7ca925e821ea04601d90313ce9aeec6863bf50f1.zip
Merge pull request #816 from VladUreche/feature/diagrams-dev-pullreq-new
Scaladoc diagrams (again)
Diffstat (limited to 'test/scaladoc/run/SI-5780.scala')
-rw-r--r--test/scaladoc/run/SI-5780.scala25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/scaladoc/run/SI-5780.scala b/test/scaladoc/run/SI-5780.scala
new file mode 100644
index 0000000000..809567faec
--- /dev/null
+++ b/test/scaladoc/run/SI-5780.scala
@@ -0,0 +1,25 @@
+import scala.tools.nsc.doc.model._
+import scala.tools.nsc.doc.model.diagram._
+import scala.tools.partest.ScaladocModelTest
+
+object Test extends ScaladocModelTest {
+
+ override def code = """
+ package scala.test.scaladoc.SI5780
+
+ object `package` { def foo: AnyRef = "hello"; class T /* so the package is not dropped */ }
+ """
+
+ // diagrams must be started. In case there's an error with dot, it should not report anything
+ def scaladocSettings = "-doc-root-content " + resourcePath + "/doc-root"
+
+ def testModel(rootPackage: Package) = {
+ // get the quick access implicit defs in scope (_package(s), _class(es), _trait(s), object(s) _method(s), _value(s))
+ import access._
+
+ val foo = rootPackage._package("scala")._package("test")._package("scaladoc")._package("SI5780")._method("foo")
+ // check that AnyRef is properly linked to its template:
+ assert(foo.resultType.name == "AnyRef", foo.resultType.name + " == AnyRef")
+ assert(foo.resultType.refEntity.size == 1, foo.resultType.refEntity + ".size == 1")
+ }
+} \ No newline at end of file