Skip to content

Commit

Permalink
Add test tool for API tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Aug 7, 2017
1 parent ea15f39 commit 2e31a5b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions test/functional/tools/identifier_source.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<tool id="identifier_source" name="identifier_source" version="0.1.0">
<description>verifies identifier source can be specified from input</description>
<command>
<![CDATA[
cat $inputA $inputB > outputA &&
cat $inputA $inputB > outputA
]]>
</command>
<inputs>
<param name="inputA" type="data"/>
<param name="inputB" type="data"/>
</inputs>
<outputs>
<data name="outputA" default_identifier_source="inputA"/>
<data name="outputB" default_identifier_source="inputB"/>
</outputs>
<help>
</help>
</tool>

0 comments on commit 2e31a5b

Please sign in to comment.