11 lines
214 B
Go
11 lines
214 B
Go
|
package azurerm
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestAzureRMNormalizeLocation(t *testing.T) {
|
||
|
s := azureRMNormalizeLocation("West US")
|
||
|
if s != "westus" {
|
||
|
t.Fatalf("expected location to equal westus, actual %s", s)
|
||
|
}
|
||
|
}
|