Skip to content

Commit

Permalink
CWL for port completion tests
Browse files Browse the repository at this point in the history
This test checks completions for
sources that are lists as well as
singletons.
  • Loading branch information
Kaushik Ghose committed Nov 27, 2019
1 parent 847767d commit 36520aa
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions tests/cwl/misc/wf-port-completer.cwl
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 36520aa

Please sign in to comment.