blob: a397a47268957493a5849a3e5f077dd381b44371 [file] [log] [blame]
stdin stdin.txt
cue cmd echo
cmp stdout expect-stdout
-- expect-stdout --
Hello World!
-- stdin.txt --
Hello World!
-- hello_tool.cue --
package hello
command: echo: {
echo: {
kind: "exec"
cmd: "cat"
stdin: string
stdout: string
}
task: display: {
kind: "print"
text: echo.stdout
}
}
-- cue.mod --