This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/tests/ops/subdir/invalid/exec/main.cue

32 lines
447 B
CUE
Raw Normal View History

package testing
import "dagger.io/dagger/op"
TestInvalidExecSubdir: {
string
#up: [
op.#FetchContainer & {
ref: "alpine"
},
op.#Exec & {
args: ["mkdir", "-p", "/tmp/foo"]
},
op.#Exec & {
args: ["sh", "-c", "echo -n world > /tmp/foo/hello"]
},
op.#Subdir & {
dir: "/tmp/foo"
},
// Should FAIL
op.#Exec & {
always: true
args: ["ls"]
},
op.#Export & {
source: "./hello"
format: "string"
},
]
}