e301dfa7b1
Signed-off-by: dubo-dubon-duponey <dubodubonduponey+github@pm.me>
20 lines
233 B
CUE
20 lines
233 B
CUE
package testing
|
|
|
|
// no-op, should not error
|
|
realempty: {
|
|
#dagger: {}
|
|
}
|
|
|
|
// no-op, should not error
|
|
empty: {
|
|
#dagger: compute: []
|
|
}
|
|
|
|
// additional prop, should not error
|
|
withprops: {
|
|
#dagger: {
|
|
compute: []
|
|
foo: bar: "foo"
|
|
}
|
|
}
|