From e182440c8e9fca81653bd36c1f25a52446582df8 Mon Sep 17 00:00:00 2001 From: Andrea Luzzardi Date: Thu, 23 Dec 2021 15:38:12 +0100 Subject: [PATCH] tests: gitPull -> gitpull Signed-off-by: Andrea Luzzardi --- tests/tasks.bats | 12 ++++++------ tests/tasks/{gitPull => gitpull}/bad_ref.cue | 0 tests/tasks/{gitPull => gitpull}/bad_remote.cue | 0 tests/tasks/{gitPull => gitpull}/exists.cue | 0 tests/tasks/{gitPull => gitpull}/git_dir.cue | 0 tests/tasks/{gitPull => gitpull}/invalid.cue | 0 tests/tasks/{gitPull => gitpull}/private_repo.cue | 0 7 files changed, 6 insertions(+), 6 deletions(-) rename tests/tasks/{gitPull => gitpull}/bad_ref.cue (100%) rename tests/tasks/{gitPull => gitpull}/bad_remote.cue (100%) rename tests/tasks/{gitPull => gitpull}/exists.cue (100%) rename tests/tasks/{gitPull => gitpull}/git_dir.cue (100%) rename tests/tasks/{gitPull => gitpull}/invalid.cue (100%) rename tests/tasks/{gitPull => gitpull}/private_repo.cue (100%) diff --git a/tests/tasks.bats b/tests/tasks.bats index 97ed97e2..41301868 100644 --- a/tests/tasks.bats +++ b/tests/tasks.bats @@ -95,15 +95,15 @@ setup() { @test "task: #GitPull" { cd "$TESTDIR" - "$DAGGER" --europa up ./tasks/gitPull/exists.cue - "$DAGGER" --europa up ./tasks/gitPull/git_dir.cue - "$DAGGER" --europa up ./tasks/gitPull/private_repo.cue + "$DAGGER" --europa up ./tasks/gitpull/exists.cue + "$DAGGER" --europa up ./tasks/gitpull/git_dir.cue + "$DAGGER" --europa up ./tasks/gitpull/private_repo.cue - run "$DAGGER" --europa up ./tasks/gitPull/invalid.cue + run "$DAGGER" --europa up ./tasks/gitpull/invalid.cue assert_failure - run "$DAGGER" --europa up ./tasks/gitPull/bad_remote.cue + run "$DAGGER" --europa up ./tasks/gitpull/bad_remote.cue assert_failure - run "$DAGGER" --europa up ./tasks/gitPull/bad_ref.cue + run "$DAGGER" --europa up ./tasks/gitpull/bad_ref.cue assert_failure } diff --git a/tests/tasks/gitPull/bad_ref.cue b/tests/tasks/gitpull/bad_ref.cue similarity index 100% rename from tests/tasks/gitPull/bad_ref.cue rename to tests/tasks/gitpull/bad_ref.cue diff --git a/tests/tasks/gitPull/bad_remote.cue b/tests/tasks/gitpull/bad_remote.cue similarity index 100% rename from tests/tasks/gitPull/bad_remote.cue rename to tests/tasks/gitpull/bad_remote.cue diff --git a/tests/tasks/gitPull/exists.cue b/tests/tasks/gitpull/exists.cue similarity index 100% rename from tests/tasks/gitPull/exists.cue rename to tests/tasks/gitpull/exists.cue diff --git a/tests/tasks/gitPull/git_dir.cue b/tests/tasks/gitpull/git_dir.cue similarity index 100% rename from tests/tasks/gitPull/git_dir.cue rename to tests/tasks/gitpull/git_dir.cue diff --git a/tests/tasks/gitPull/invalid.cue b/tests/tasks/gitpull/invalid.cue similarity index 100% rename from tests/tasks/gitPull/invalid.cue rename to tests/tasks/gitpull/invalid.cue diff --git a/tests/tasks/gitPull/private_repo.cue b/tests/tasks/gitpull/private_repo.cue similarity index 100% rename from tests/tasks/gitPull/private_repo.cue rename to tests/tasks/gitpull/private_repo.cue