Tests p:rename
Test ab-rename-001.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 match="p:rename" new-name="p:changed-name"/>
</p:declare-step>
<p:pipeline xmlns:p="http://www.w3.org/ns/xproc" name="pipeline">
<p:rename>
<p:option name="match" value="p:rename"/>
<p:option name="new-name" value="p:changed-rename"/>
</p:rename>
</p:pipeline>
<s:schema xmlns="http://www.w3.org/1999/xhtml" xmlns:s="http://purl.oclc.org/dsdl/schematron" queryBinding="xslt2">
<s:ns uri="http://www.w3.org/ns/xproc" prefix="p"/>
<s:pattern>
<s:rule context="/">
<s:assert test="p:pipeline">The root element is not 'Q{http://www.w3.org/ns/xproc}pipeline'.</s:assert>
<s:assert test="p:pipeline/p:changed-name">The root element does not have a child 'Q{http://www.w3.org/ns/xproc}changed-name'.</s:assert>
<s:assert test="count(p:pipeline/p:changed-name/p:option)=2">Element 'p:changed-name' does not have two 'p:option' children.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Added attribute 'queryBinding' to schematron's schema.
Ported tests for p:rename