p:import-027 (AB)
Tests p:import: Main step and libraries can import the same step. (Thanks to Erik!)
Test is expected to pass.
The pipeline
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc"
xmlns:t="http://xproc.org/ns/testsuite/3.0" xmlns:test="http://test" name="pipeline"
version="3.0">
<p:import href="../pipelines/ab-import-026a.xpl"/>
<p:import href="../pipelines/ab-import-026b.xpl"/>
<p:import href="../pipelines/ab-import-026general.xpl"/>
<p:input port="source">
<START/>
</p:input>
<p:output port="result"/>
<test:a/>
<test:b/>
</p:declare-step>
Result
<B xmlns:t="http://xproc.org/ns/testsuite/3.0">
<general>
<A>
<general>
<START xmlns:test="http://test"/>
</general>
</A>
</general>
</B>
Schematron checks
<s:schema xmlns:s="http://purl.oclc.org/dsdl/schematron"
xmlns:t="http://xproc.org/ns/testsuite/3.0" queryBinding="xslt2">
<s:pattern>
<s:rule context="/">
<s:assert test="B/general/A/general/START">The result should be B/general/A/general/START.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Revision history
- 28 Jan 2023, Achim Berndzen
- Initial test