From d1a7af8e27227c7625762fe10560e70853f6529a Mon Sep 17 00:00:00 2001 From: Kato Kazuyoshi Date: Tue, 4 Oct 2011 15:18:54 +0000 Subject: Add a small "template engine" and separete HTML... Add a small "template engine" and separete HTML from Scaladoc's source code. Review by ureche. --- test/scaladoc/scala/IndexTest.scala | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/scaladoc/scala/IndexTest.scala b/test/scaladoc/scala/IndexTest.scala index 7679bab0c6..ec8011bf41 100644 --- a/test/scaladoc/scala/IndexTest.scala +++ b/test/scaladoc/scala/IndexTest.scala @@ -5,6 +5,23 @@ import scala.tools.nsc.doc import scala.tools.nsc.doc.html.page.Index import java.net.URLClassLoader +object XMLUtil { + import scala.xml._ + + def stripGroup(seq: Node): Node = { + seq match { + case group: Group => { +
{ group.nodes.map(stripGroup _) }
+ } + case e: Elem => { + val child = e.child.map(stripGroup _) + Elem(e.prefix, e.label, e.attributes, e.scope, child : _*) + } + case _ => seq + } + } +} + object Test extends Properties("Index") { def getClasspath = { @@ -71,10 +88,10 @@ object Test extends Properties("Index") { case None => false } } - property("browser contants a script element") = { + property("body contants a script element") = { createIndex("src/compiler/scala/tools/nsc/doc/html/page/Index.scala") match { case Some(index) => - (index.browser \ "script").size == 1 + (XMLUtil.stripGroup(index.body) \\ "script").size == 1 case None => false } -- cgit v1.2.3