Test that only first p:choose/p:when/@test evaluating to true is considered.
Test ab-choose-038.xml is expected to pass.
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" version="3.0">
<p:output port="result"/>
<p:identity>
<p:with-input><success xmlns=""/></p:with-input>
</p:identity>
<p:try>
<p:choose>
<p:when test="true()">
<p:identity/>
</p:when>
<p:when test="error()">
<p:identity/>
</p:when>
</p:choose>
<p:catch>
<p:identity>
<p:with-input><failure xmlns=""/></p:with-input>
</p:identity>
</p:catch>
</p:try>
</p:declare-step>
<s:schema xmlns:s="http://purl.oclc.org/dsdl/schematron">
<s:pattern>
<s:rule context="/">
<s:assert test="/success">Root element is not 'success'.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
New tests