X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/adfe146695a6acebe65b7953db1e8a88dc53a6b4..98c6516b3dd61db66c8f92345b45df33c4530a67:/services/api/test/fixtures/workflows.yml diff --git a/services/api/test/fixtures/workflows.yml b/services/api/test/fixtures/workflows.yml index 4e1f4af1e3..2859e375a4 100644 --- a/services/api/test/fixtures/workflows.yml +++ b/services/api/test/fixtures/workflows.yml @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + workflow_with_definition_yml: uuid: zzzzz-7fd4e-validworkfloyml owner_uuid: zzzzz-tpzed-xurymjxw79nv3jz @@ -25,7 +29,7 @@ workflow_with_input_specifications: name: Workflow with input specifications description: this workflow has inputs specified created_at: <%= 1.minute.ago.to_s(:db) %> - definition: + definition: | cwlVersion: v1.0 class: CommandLineTool baseCommand: @@ -44,3 +48,22 @@ workflow_with_input_specifications: inputBinding: position: 1 outputs: [] + +workflow_with_input_defaults: + uuid: zzzzz-7fd4e-validwithinput2 + owner_uuid: zzzzz-j7d0g-zhxawtyetzwc5f0 + name: Workflow with default input specifications + description: this workflow has inputs specified + created_at: <%= 1.minute.ago.to_s(:db) %> + definition: | + cwlVersion: v1.0 + class: CommandLineTool + baseCommand: + - echo + inputs: + - type: string + id: ex_string + - type: string + id: ex_string_def + default: hello-testing-123 + outputs: []