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
Solomon Hykes d7a805f42b stdlib: move all imports to alpha.dagger.io
Signed-off-by: Solomon Hykes <solomon@dagger.io>
2021-06-25 10:31:22 +00:00

32 lines
453 B
CUE

package testing
import "alpha.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"
},
]
}