22 lines
412 B
Go
22 lines
412 B
Go
|
package terraform
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestSMCUserVariables(t *testing.T) {
|
||
|
c := testConfig(t, "smc-uservars")
|
||
|
|
||
|
// Required variables not set
|
||
|
errs := smcUserVariables(c, nil)
|
||
|
if len(errs) == 0 {
|
||
|
t.Fatal("should have errors")
|
||
|
}
|
||
|
|
||
|
// Required variables set, optional variables unset
|
||
|
errs = smcUserVariables(c, map[string]string{"foo": "bar"})
|
||
|
if len(errs) != 0 {
|
||
|
t.Fatalf("err: %#v", errs)
|
||
|
}
|
||
|
}
|