Files
terraform-provider-ct/internal/provider_test.go
Dalton Hubble 5e12faf969 Refactor files and function names
* Functions that are top-level for use by the provider can
be exported since they're within an internal package
2023-04-01 14:59:30 -07:00

18 lines
296 B
Go

package internal
import (
"testing"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
)
var testProviders = map[string]*schema.Provider{
"ct": Provider(),
}
func TestProvider(t *testing.T) {
if err := Provider().InternalValidate(); err != nil {
t.Fatalf("err: %s", err)
}
}