Sign in
third-party-mirror
/
terraform
/
refs/heads/main
/
.
/
v1.12.2
/
internal
/
backend
/
local
/
local_test.go
blob: 2feb0da0d1206ab537f522b040c9b3f2acc4592b [
file
] [
log
] [
blame
] [
edit
]
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package local
import (
"flag"
"os"
"testing"
_ "github.com/hashicorp/terraform/internal/logging"
)
func TestMain(m *testing.M) {
flag.Parse()
os.Exit(m.Run())
}