tests: add basic cli tests

Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
Andrea Luzzardi
2021-04-01 16:15:06 -07:00
parent 48e8b200ae
commit 429820036f
5 changed files with 101 additions and 2 deletions

11
tests/cli/simple/main.cue Normal file
View File

@@ -0,0 +1,11 @@
package testing
import "dagger.io/llb"
foo: "value"
bar: "another value"
#compute: [
llb.#FetchContainer & {ref: "busybox"},
llb.#Exec & {args: ["true"]},
]