From 36520aaaf6fd6c7eeed38f3ba1dc4e84c981f9f1 Mon Sep 17 00:00:00 2001 From: Kaushik Ghose Date: Wed, 27 Nov 2019 10:53:10 -0500 Subject: [PATCH] CWL for port completion tests This test checks completions for sources that are lists as well as singletons. --- tests/cwl/misc/wf-port-completer.cwl | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 tests/cwl/misc/wf-port-completer.cwl diff --git a/tests/cwl/misc/wf-port-completer.cwl b/tests/cwl/misc/wf-port-completer.cwl new file mode 100644 index 0000000..bc92483 --- /dev/null +++ b/tests/cwl/misc/wf-port-completer.cwl @@ -0,0 +1,25 @@ +class: Workflow +cwlVersion: v1.0 + +inputs: + in1: string + +steps: + - id: step1 + run: clt1.cwl + in: + in1: in1 + out: [out1] + + - id: step2 + run: clt1.cwl + in: + in1: step1/out1 + out: [out1] + +outputs: + out1: + type: string[] + outputSource: + - step1/out1 + - in1