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/plan/inputs/directories/conflicting_values.cue

16 lines
287 B
CUE
Raw Normal View History

package main
import (
"dagger.io/dagger/engine"
)
engine.#Plan & {
inputs: directories: test: path: "."
actions: verify: engine.#ReadFile & {
input: inputs.directories.test.contents
path: "test.txt"
} & {
contents: "local dfsadf" // should fail with conflicting values
}
}