From b93d546711cc84e9c8009848d734617a7de43862 Mon Sep 17 00:00:00 2001 From: "Bruno P. Kinoshita" Date: Mon, 6 Jun 2022 12:58:03 +1200 Subject: [PATCH] Update the doc and use "true" as base command for the metadata test --- tests/metadata.cwl | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/tests/metadata.cwl b/tests/metadata.cwl index 72e6b39d..6ab21635 100644 --- a/tests/metadata.cwl +++ b/tests/metadata.cwl @@ -8,7 +8,7 @@ $schemas: cwlVersion: v1.2 class: CommandLineTool -doc: "Print the contents of a file to stdout using 'cat' running in a docker container." +doc: "Test that a command line document with metadata is executed successfully." dct:creator: id: "http://orcid.org/0000-0003-3566-7705" @@ -19,14 +19,6 @@ dct:creator: hints: DockerRequirement: dockerPull: docker.io/debian:stable-slim -inputs: - file1: - type: File - inputBinding: {position: 1} - numbering: - type: boolean? - inputBinding: - position: 0 - prefix: -n +inputs: [] outputs: [] -baseCommand: cat +baseCommand: "true"