From 83ab6967c485e3832d6e5b6d44fcc22aadb7fee9 Mon Sep 17 00:00:00 2001 From: Joseph Ligier Date: Tue, 12 Dec 2023 15:00:46 +0100 Subject: [PATCH] Remove test --- internal/provider/provider_test.go | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 internal/provider/provider_test.go diff --git a/internal/provider/provider_test.go b/internal/provider/provider_test.go deleted file mode 100644 index b0753d9..0000000 --- a/internal/provider/provider_test.go +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) HashiCorp, Inc. -// SPDX-License-Identifier: MPL-2.0 - -package provider - -import ( - "testing" - - "github.com/hashicorp/terraform-plugin-framework/providerserver" - "github.com/hashicorp/terraform-plugin-go/tfprotov6" -) - -// testAccProtoV6ProviderFactories are used to instantiate a provider during -// acceptance testing. The factory function will be invoked for every Terraform -// CLI command executed to create a provider server to which the CLI can -// reattach. -var testAccProtoV6ProviderFactories = map[string]func() (tfprotov6.ProviderServer, error){ - "cilium": providerserver.NewProtocol6WithError(New("test")()), -} - -func testAccPreCheck(t *testing.T) { - // You can add code here to run prior to any test case execution, for example assertions - // about the appropriate environment variables being set are common to see in a pre-check - // function. -}