Test doc-prop-005.xml is expected to pass.
<p:declare-step xmlns:c="http://www.w3.org/ns/xproc-step" xmlns:p="http://www.w3.org/ns/xproc" name="main" version="3.0">
<p:output port="result"/>
<p:variable name="a" select="3 + 4"/>
<p:cast-content-type content-type="application/xml">
<p:with-input port="source" select="p:document-properties($a)">
<doc/>
</p:with-input>
</p:cast-content-type>
</p:declare-step>
<s:schema xmlns:s="http://purl.oclc.org/dsdl/schematron" queryBinding="xslt2">
<s:ns prefix="j" uri="http://www.w3.org/2005/xpath-functions"/>
<s:pattern>
<s:rule context="/*">
<s:assert test="self::j:map">The pipeline root is not 'j:map'.</s:assert>
<s:assert test="count(/self::j:map/*)=0">Root j:map shouldnt have child elements.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Fixed test as consequence of pr#1042.
Added attribute 'queryBinding' to schematron's schema.
Changed test from p:document-properties-document() to p:document-properties()
Changed test, because it not an error anymore, if parameter of p:document-properties-document() is not a document.
Port my test suite; add documentation and schemas