diff options
Diffstat (limited to 'test/write_file')
-rw-r--r-- | test/write_file/reference.xml | 3 | ||||
-rw-r--r-- | test/write_file/transformation.xsl | 13 |
2 files changed, 10 insertions, 6 deletions
diff --git a/test/write_file/reference.xml b/test/write_file/reference.xml index ba10cf5..e16d0b5 100644 --- a/test/write_file/reference.xml +++ b/test/write_file/reference.xml @@ -1,3 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<test_case>Hello world! -</test_case> +<test_case>Hello world!</test_case> diff --git a/test/write_file/transformation.xsl b/test/write_file/transformation.xsl index f65e62d..82afdfc 100644 --- a/test/write_file/transformation.xsl +++ b/test/write_file/transformation.xsl @@ -10,12 +10,17 @@ <xsl:import href="[testcase.xsl]"/> <xsl:template name="implementation"> - <xsl:variable name="result" select="InputXSLT:write-file('test.txt', 'Hello world!')"/> - <xsl:variable name="content" select="InputXSLT:read-file('test.txt')"/> + <xsl:variable name="testContent"> + <content> + <entry>Hello world!</entry> + </content> + </xsl:variable> + <xsl:variable name="result" select="InputXSLT:write-file('test.xml', $testContent)"/> + <xsl:variable name="actualContent" select="InputXSLT:read-file('test.xml')"/> <xsl:choose> - <xsl:when test="$content/self::file/@result = 'success'"> - <xsl:value-of select="$content/self::file/text()"/> + <xsl:when test="$actualContent/self::file/@result = 'success'"> + <xsl:value-of select="$actualContent/self::file/content/entry"/> </xsl:when> <xsl:otherwise> Error during file io |