Skip to content

Commit

Permalink
Use underscores instead of spaces in test names
Browse files Browse the repository at this point in the history
  • Loading branch information
hammerhead committed Feb 1, 2024
1 parent 134a2fa commit 30db4dd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions aws/tests/variables.tftest.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@ variables {
availability_zones = ["az-1"]
}

run "no CrateDB download URL" {
run "no_CrateDB_download_url" {
command = plan

variables {
cratedb_tar_download_url = null
}
}

run "valid CrateDB download URL" {
run "valid_CrateDB_download_url" {
command = plan

variables {
cratedb_tar_download_url = "https://cdn.crate.io/downloads/releases/cratedb/aarch64_linux/crate-5.5.1.tar.gz"
}
}

run "invalid CrateDB download URL" {
run "invalid_CrateDB_download_url" {
command = plan

variables {
Expand All @@ -31,23 +31,23 @@ run "invalid CrateDB download URL" {
expect_failures = [var.cratedb_tar_download_url]
}

run "no CrateDB password" {
run "no_CrateDB_password" {
command = plan

variables {
cratedb_password = null
}
}

run "valid CrateDB password" {
run "valid_CrateDB_password" {
command = plan

variables {
cratedb_password = "zie6aeya9ooMeey0yai5"
}
}

run "password with double dollar signs" {
run "password_with_double_dollar_signs" {
command = plan

variables {
Expand Down

0 comments on commit 30db4dd

Please sign in to comment.