diff options
Diffstat (limited to 'test-data')
| -rw-r--r-- | test-data/echo.cwl | 7 | ||||
| -rw-r--r-- | test-data/external-cwl-workflow.scm | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/test-data/echo.cwl b/test-data/echo.cwl new file mode 100644 index 0000000..b957a59 --- /dev/null +++ b/test-data/echo.cwl @@ -0,0 +1,7 @@ +cwlVersion: v1.2 +class: CommandLineTool +baseCommand: echo +inputs: + message: + type: string +outputs: {} diff --git a/test-data/external-cwl-workflow.scm b/test-data/external-cwl-workflow.scm new file mode 100644 index 0000000..74c91c1 --- /dev/null +++ b/test-data/external-cwl-workflow.scm @@ -0,0 +1,7 @@ +(define echo + (cwl-workflow "echo.cwl")) + +;; TODO: Remove this workflow and return echo directly once bug +;; a9352f5 is fixed. +(workflow ((message #:type string)) + (echo #:message "foo")) |
