Sha256: 61ce62dfd45dcfbf6a126f59a8549d6253f7edffc6e6248ae2ffd9aa80a3d2c2
Contents?: true
Size: 574 Bytes
Versions: 3
Compression:
Stored size: 574 Bytes
Contents
<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet exclude-result-prefixes="#all" version="2.0" xmlns:x="http://www.jenitennison.com/xslt/xspec" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <!-- Finds any test failure in XSpec test result XML file. Output XML structure is for Ant <xmlproperty> task. --> <xsl:template as="element(xspec)" match="document-node()"> <xspec> <passed> <xsl:value-of select="empty(//x:*[@successful = 'false'])" /> </passed> </xspec> </xsl:template> </xsl:stylesheet>
Version data entries
3 entries across 3 versions & 1 rubygems