about summary refs log tree commit diff
path: root/test-data/workflow-with-various-file-type-formals.cwl
diff options
context:
space:
mode:
authorArun Isaac2025-11-27 16:27:21 +0000
committerArun Isaac2025-11-27 17:04:05 +0000
commit4ccc9cf0a0f56f931c79b42df078ac313bd0b5b7 (patch)
treeb7507cb5b0131772269398c55a4cf52a0d3f59c5 /test-data/workflow-with-various-file-type-formals.cwl
parentced597ee47dc03c9c44c883e5670090ec3bfb0ab (diff)
downloadravanan-4ccc9cf0a0f56f931c79b42df078ac313bd0b5b7.tar.gz
ravanan-4ccc9cf0a0f56f931c79b42df078ac313bd0b5b7.tar.lz
ravanan-4ccc9cf0a0f56f931c79b42df078ac313bd0b5b7.zip
tests: Test reader end-to-end, don't test specific functions.
This makes the tests less fragile—that is, less subject to breakage
due to code refactoring. And, we can be more confident that the reader
actually works end-to-end.
Diffstat (limited to 'test-data/workflow-with-various-file-type-formals.cwl')
-rw-r--r--test-data/workflow-with-various-file-type-formals.cwl39
1 files changed, 39 insertions, 0 deletions
diff --git a/test-data/workflow-with-various-file-type-formals.cwl b/test-data/workflow-with-various-file-type-formals.cwl
new file mode 100644
index 0000000..762bf9f
--- /dev/null
+++ b/test-data/workflow-with-various-file-type-formals.cwl
@@ -0,0 +1,39 @@
+class: Workflow
+inputs:
+  infoo:
+    type: File
+    secondaryFiles:
+      - .bai
+  inbar:
+    type:
+      type: array
+      items: File
+    secondaryFiles:
+      - .bai
+  infoobar:
+    type:
+      type: array
+      items:
+        type: array
+        items: File
+    secondaryFiles:
+      - .bai
+outputs:
+  outfoo:
+    type: File
+    secondaryFiles:
+      - .bai
+  outbar:
+    type:
+      type: array
+      items: File
+    secondaryFiles:
+      - .bai
+  outfoobar:
+    type:
+      type: array
+      items:
+        type: array
+        items: File
+    secondaryFiles:
+      - .bai