test: abra-integration-test-recipe -> abra-test-recipe

See coop-cloud/abra-test-recipe#3
This commit is contained in:
decentral1se 2023-10-05 14:22:11 +02:00
parent 14f2d72aba
commit b4fd39828f
Signed by untrusted user: decentral1se
GPG Key ID: 03789458B3D0C410
4 changed files with 40 additions and 40 deletions

View File

@ -21,7 +21,7 @@ var CatalogueSkipList = map[string]bool{
"abra-capsul": true, "abra-capsul": true,
"abra-gandi": true, "abra-gandi": true,
"abra-hetzner": true, "abra-hetzner": true,
"abra-integration-test-recipe": true, "abra-test-recipe": true,
"apps": true, "apps": true,
"aur-abra-git": true, "aur-abra-git": true,
"auto-mirror": true, "auto-mirror": true,

View File

@ -42,7 +42,7 @@ func TestGetApp(t *testing.T) {
func TestGetComposeFiles(t *testing.T) { func TestGetComposeFiles(t *testing.T) {
offline := true offline := true
r, err := recipe.Get("abra-integration-test-recipe", offline) r, err := recipe.Get("abra-test-recipe", offline)
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }
@ -89,7 +89,7 @@ func TestGetComposeFiles(t *testing.T) {
func TestGetComposeFilesError(t *testing.T) { func TestGetComposeFilesError(t *testing.T) {
offline := true offline := true
r, err := recipe.Get("abra-integration-test-recipe", offline) r, err := recipe.Get("abra-test-recipe", offline)
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }

View File

@ -87,7 +87,7 @@ func TestReadEnv(t *testing.T) {
func TestReadAbraShEnvVars(t *testing.T) { func TestReadAbraShEnvVars(t *testing.T) {
offline := true offline := true
r, err := recipe.Get("abra-integration-test-recipe", offline) r, err := recipe.Get("abra-test-recipe", offline)
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }

View File

@ -15,5 +15,5 @@ _common_setup() {
export TEST_APP_NAME="$(basename "${BATS_TEST_FILENAME//./_}")" export TEST_APP_NAME="$(basename "${BATS_TEST_FILENAME//./_}")"
export TEST_APP_DOMAIN="$TEST_APP_NAME.$TEST_SERVER" export TEST_APP_DOMAIN="$TEST_APP_NAME.$TEST_SERVER"
export TEST_RECIPE="abra-integration-test-recipe" export TEST_RECIPE="abra-test-recipe"
} }