mirror of
https://github.com/outbackdingo/terraform-provider-ct.git
synced 2026-01-27 10:20:38 +00:00
* Functions that are top-level for use by the provider can be exported since they're within an internal package
18 lines
296 B
Go
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)
|
|
}
|
|
}
|