Import-017 (AB)
Tests repeated import of library with static option.
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" version="3.0">
<p:import href="../pipelines/ab-library-027.xpl"/>
<p:import href="../pipelines/ab-library-030.xpl"/>
<p:output port="result"/>
<test:step/>
<p:add-attribute match="/*" attribute-name="att"
attribute-value="{$imported-option}"/>
</p:declare-step>
Result
<doc xmlns:t="http://xproc.org/ns/testsuite/3.0"
xmlns:test="http://test" att="42">42</doc>
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="doc">The root element is not 'doc'.</s:assert>
<s:assert test="doc/text()='42'">The text child of doc is not the correct answer.</s:assert>
<s:assert test="doc/@att='42'">There is no attribute 'att' or @att does not give the right answer.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Revision history
- 30 Jan 2022, Achim Berndzen
- Added test.