terraform-provider-gitea/gitea/provider_test.go
Tobias Trabelsi bc6261d444
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
fixed tests
incremented version number
2022-08-06 16:47:00 +02:00

34 lines
666 B
Go

package gitea
import (
"os"
"testing"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
)
var testAccProviders map[string]*schema.Provider
var testAccProvider *schema.Provider
func init() {
testAccProvider = Provider()
testAccProviders = map[string]*schema.Provider{
"gitea": testAccProvider,
}
}
func TestProvider(t *testing.T) {
if err := Provider().InternalValidate(); err != nil {
t.Fatalf("err: %s", err)
}
}
func TestProvider_impl(t *testing.T) {
var _ *schema.Provider = Provider()
}
func testAccPreCheck(t *testing.T) {
if v := os.Getenv("GITEA_TOKEN"); v == "" {
t.Fatal("GITEA_TOKEN must be set for acceptance tests")
}
}