Add mkdir task tests

Signed-off-by: Vasek - Tom C <tom.chauveau@epitech.eu>
This commit is contained in:
Vasek - Tom C
2021-12-17 20:29:15 +01:00
parent 09c427f1cf
commit d2580f4a73
6 changed files with 122 additions and 1 deletions

View File

@@ -51,7 +51,24 @@ setup() {
cd "$TESTDIR"/tasks/copy
"$DAGGER" --europa up ./copy_exec.cue
"$DAGGER" --europa up ./copy_file.cue
run "$DAGGER" --europa up ./copy_exec_invalid.cue
assert_failure
}
@test "task: #Mkdir" {
cd "$TESTDIR"/tasks/mkdir
"$DAGGER" --europa up ./mkdir.cue
}
@test "task: #Mkdir: create parents" {
cd "$TESTDIR"/tasks/mkdir
"$DAGGER" --europa up ./mkdir_parents.cue
}
@test "task: #Mkdir failure: disable parents creation" {
cd "$TESTDIR"/tasks/mkdir
run "$DAGGER" --europa up ./mkdir_failure_disable_parents.cue
assert_failure
}