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