terraform/builtin/providers/aws/resource_provider_test.go

12 lines
188 B
Go
Raw Normal View History

2014-05-30 02:28:38 +02:00
package aws
import (
"testing"
"github.com/hashicorp/terraform/terraform"
)
func TestResourceProvider_impl(t *testing.T) {
var _ terraform.ResourceProvider = new(ResourceProvider)
}