opentofu/builtin/providers/template/provider_test.go
Josh Bleecher Snyder 745d83a995 providers: add template provider
Fixes #215.
2015-05-01 16:59:49 -07:00

14 lines
230 B
Go

package template
import (
"testing"
"github.com/hashicorp/terraform/helper/schema"
)
func TestProvider(t *testing.T) {
if err := Provider().(*schema.Provider).InternalValidate(); err != nil {
t.Fatalf("err: %s", err)
}
}