opentofu/builtin/providers/aws/provider_test.go
2014-08-19 15:40:48 -07:00

12 lines
157 B
Go

package aws
import (
"testing"
)
func TestProvider(t *testing.T) {
if err := Provider().InternalValidate(); err != nil {
t.Fatalf("err: %s", err)
}
}