aboutsummaryrefslogtreecommitdiff
path: root/test/transform/test.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/test.xsl')
-rw-r--r--test/transform/test.xsl24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/transform/test.xsl b/test/transform/test.xsl
new file mode 100644
index 0000000..40134c4
--- /dev/null
+++ b/test/transform/test.xsl
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet
+ version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:InputXSLT="function.inputxslt.application"
+ exclude-result-prefixes="InputXSLT"
+>
+
+<xsl:output
+ method="xml"
+ omit-xml-declaration="no"
+ encoding="UTF-8"
+ indent="yes"
+/>
+
+<xsl:template match="/">
+<test_case>
+ <transform_test>
+ <xsl:value-of select="InputXSLT:read-file('transformation.xsl')"/>
+ </transform_test>
+</test_case>
+</xsl:template>
+
+</xsl:stylesheet>