terraform/internal/backend/local/local_test.go

15 lines
170 B
Go

package local
import (
"flag"
"os"
"testing"
_ "github.com/hashicorp/terraform/internal/logging"
)
func TestMain(m *testing.M) {
flag.Parse()
os.Exit(m.Run())
}