diff --git a/pkg/sdk/poc/generator/templates.go b/pkg/sdk/poc/generator/templates.go index 8d7d6b52b4..8e0188bcb2 100644 --- a/pkg/sdk/poc/generator/templates.go +++ b/pkg/sdk/poc/generator/templates.go @@ -32,10 +32,6 @@ var ( dtoStructsTemplateContent string DtoDeclTemplate, _ = template.New("dtoTemplate").Parse(dtoStructsTemplateContent) - //go:embed templates/integration_tests.tmpl - integrationTestTemplateContent string - IntegrationTestsTemplate, _ = template.New("integrationTestsTemplate").Parse(integrationTestTemplateContent) - //go:embed templates/implementation.tmpl implementationTemplateContent string ImplementationTemplate *template.Template diff --git a/pkg/sdk/poc/generator/templates/integration_tests.tmpl b/pkg/sdk/poc/generator/templates/integration_tests.tmpl deleted file mode 100644 index f814ba6f31..0000000000 --- a/pkg/sdk/poc/generator/templates/integration_tests.tmpl +++ /dev/null @@ -1,13 +0,0 @@ -{{- /*gotype: github.com/Snowflake-Labs/terraform-provider-snowflake/pkg/sdk/poc/generator.Interface*/ -}} - -import "testing" - -func TestInt_{{ .Name }}(t *testing.T) { -// TODO: prepare common resources - -{{ range .Operations }} - t.Run("{{ .Name }}", func(t *testing.T) { - // TODO: fill me - }) -{{ end -}} -}