diff options
Diffstat (limited to 'e2e-tests/tools')
| -rw-r--r-- | e2e-tests/tools/command-line-tool-with-array-input.scm | 3 | ||||
| -rw-r--r-- | e2e-tests/tools/unseparated-prefix-arguments.scm | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/e2e-tests/tools/command-line-tool-with-array-input.scm b/e2e-tests/tools/command-line-tool-with-array-input.scm new file mode 100644 index 0000000..38a8722 --- /dev/null +++ b/e2e-tests/tools/command-line-tool-with-array-input.scm @@ -0,0 +1,3 @@ +(command #:inputs (messages #:type (array string)) + #:run "echo" messages + #:outputs (output_message #:type stdout)) diff --git a/e2e-tests/tools/unseparated-prefix-arguments.scm b/e2e-tests/tools/unseparated-prefix-arguments.scm new file mode 100644 index 0000000..03f68e2 --- /dev/null +++ b/e2e-tests/tools/unseparated-prefix-arguments.scm @@ -0,0 +1,3 @@ +(command #:inputs (message #:type string) + #:run "echo" ("-a" message #:separate? #f) ("-b" "bar" #:separate? #f) + #:outputs (output_message #:type stdout)) |
