10
tests/tasks/gitPull/badref.cue
Normal file
10
tests/tasks/gitPull/badref.cue
Normal file
@@ -0,0 +1,10 @@
|
||||
package main
|
||||
|
||||
import "alpha.dagger.io/europa/dagger/engine"
|
||||
|
||||
engine.#Plan & {
|
||||
actions: badref: engine.#GitPull & {
|
||||
remote: "https://github.com/blocklayerhq/acme-clothing.git"
|
||||
ref: "lalalalal"
|
||||
}
|
||||
}
|
10
tests/tasks/gitPull/badremote.cue
Normal file
10
tests/tasks/gitPull/badremote.cue
Normal file
@@ -0,0 +1,10 @@
|
||||
package main
|
||||
|
||||
import "alpha.dagger.io/europa/dagger/engine"
|
||||
|
||||
engine.#Plan & {
|
||||
actions: badremote: engine.#GitPull & {
|
||||
remote: "https://github.com/blocklayerhq/lalalala.git"
|
||||
ref: "master"
|
||||
}
|
||||
}
|
7
tests/tasks/gitPull/invalid.cue
Normal file
7
tests/tasks/gitPull/invalid.cue
Normal file
@@ -0,0 +1,7 @@
|
||||
package main
|
||||
|
||||
import "alpha.dagger.io/europa/dagger/engine"
|
||||
|
||||
engine.#Plan & {
|
||||
actions: invalid: engine.#GitPull & {}
|
||||
}
|
Reference in New Issue
Block a user