Tests p:rename
Test ab-rename-003a.xml is expected to pass.
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" version="3.0">
<p:input port="source"/>
<p:output port="result"/>
<p:rename xmlns:test="http://test.com" xmlns:test2="http://test2.com" match="@test:foo" new-name="test2:foo"/>
</p:declare-step>
<doc xmlns:test="http://test.com" xmlns:test2="http://test2.com" test2:foo="value2" test:foo="value"/>
<s:schema xmlns="http://www.w3.org/1999/xhtml" xmlns:s="http://purl.oclc.org/dsdl/schematron" queryBinding="xslt2">
<s:ns uri="http://test2.com" prefix="test2"/>
<s:pattern>
<s:rule context="/">
<s:assert test="doc">The root element is not 'doc'.</s:assert>
<s:assert test="doc/@test2:foo">Root element does not have an attribute Q{http://test2.com}foo.</s:assert>
<s:assert test="doc/@test2:foo='value'">Attribute's value is not 'value'.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Added attribute 'queryBinding' to schematron's schema.
Ported tests for p:rename