c637549b15
Previously, the subdir argument wa ignored by dagger input git. I've fix that behavior and add a test. Signed-off-by: Tom Chauveau <tom.chauveau@epitech.eu>
19 lines
354 B
CUE
19 lines
354 B
CUE
package testing
|
|
|
|
import (
|
|
"alpha.dagger.io/dagger"
|
|
"alpha.dagger.io/os"
|
|
)
|
|
|
|
// Input https://github.com/dagger/examples/tree/main/todoapp
|
|
TestRepo: dagger.#Input & {dagger.#Artifact}
|
|
|
|
// Check README.md
|
|
TestFolder: os.#Container & {
|
|
always: true
|
|
command: #"""
|
|
grep -q "Todo APP" /input/repo/README.md
|
|
"""#
|
|
mount: "/input/repo": from: TestRepo
|
|
}
|