c2766c265b
Signed-off-by: Solomon Hykes <solomon@dagger.io>
21 lines
329 B
CUE
21 lines
329 B
CUE
package testing
|
|
|
|
import (
|
|
"dagger.io/dagger"
|
|
)
|
|
|
|
dagger.#Plan & {
|
|
inputs: directories: testdata: path: "./testdata"
|
|
|
|
actions: {
|
|
build: dagger.#Dockerfile & {
|
|
source: inputs.directories.testdata.contents
|
|
}
|
|
|
|
verify: dagger.#Exec & {
|
|
input: build.output
|
|
args: ["sh", "-c", "test $(cat /dir/foo) = foobar"]
|
|
}
|
|
}
|
|
}
|