You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2016/02/06 23:27:52 UTC

svn commit: r1728891 - /maven/plugins/trunk/maven-site-plugin/src/it/inheritance-interpolation/verify.groovy

Author: hboutemy
Date: Sat Feb  6 22:27:51 2016
New Revision: 1728891

URL: http://svn.apache.org/viewvc?rev=1728891&view=rev
Log:
[MSITE-743] updated breadcrumbs URLs to be consistent with menus: point to index.html thanks to DOXIASITETOOLS-147

Modified:
    maven/plugins/trunk/maven-site-plugin/src/it/inheritance-interpolation/verify.groovy

Modified: maven/plugins/trunk/maven-site-plugin/src/it/inheritance-interpolation/verify.groovy
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/src/it/inheritance-interpolation/verify.groovy?rev=1728891&r1=1728890&r2=1728891&view=diff
==============================================================================
--- maven/plugins/trunk/maven-site-plugin/src/it/inheritance-interpolation/verify.groovy (original)
+++ maven/plugins/trunk/maven-site-plugin/src/it/inheritance-interpolation/verify.groovy Sat Feb  6 22:27:51 2016
@@ -38,6 +38,11 @@ childContent = new File( basedir, 'child
 
 assert childContent.contains( 'project.artifactId = child' );
 
+// breadcrumbs
+assert childContent.contains( '<a href="../../index.html"' );
+assert childContent.contains( '<a href="../index.html"' );
+assert childContent.contains( '<a href="index.html"' );
+
 reactorContent = new File( basedir, 'reactor-parent/target/site/index.html' ).text;
 
 assert reactorContent.contains( 'project.artifactId = reactor-parent' );