diff options
author | Arun Isaac | 2021-11-02 01:37:47 +0530 |
---|---|---|
committer | Arun Isaac | 2021-11-02 01:37:47 +0530 |
commit | 0f1167d8fa95874d952f44492ed851a031ed8a8c (patch) | |
tree | 4eaa6280f142954372fe437b5d052cc5fd737c3b /tests/input-output-parameters.cwl | |
parent | 0b359cf2c32cde81b4311d55273c8f6c14ca6b93 (diff) | |
download | ccwl-0f1167d8fa95874d952f44492ed851a031ed8a8c.tar.gz ccwl-0f1167d8fa95874d952f44492ed851a031ed8a8c.tar.lz ccwl-0f1167d8fa95874d952f44492ed851a031ed8a8c.zip |
tests: Add input-output-parameters.cwl.
This is a follow-up to 0b359cf2c32cde81b4311d55273c8f6c14ca6b93 where
this file should have been included.
* tests/input-output-parameters.cwl: New file.
* Makefile.am (EXTRA_DIST): Register it.
Diffstat (limited to 'tests/input-output-parameters.cwl')
-rw-r--r-- | tests/input-output-parameters.cwl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/input-output-parameters.cwl b/tests/input-output-parameters.cwl new file mode 100644 index 0000000..54b0bb8 --- /dev/null +++ b/tests/input-output-parameters.cwl @@ -0,0 +1,12 @@ +cwlVersion: v1.2 +class: CommandLineTool +baseCommand: echo +inputs: + - id: spam + type: string + inputBinding: + position: 1 +outputs: + ham: + type: stdout + eggs: stdout |