garage-k2v-go/main_test.go

17 lines
267 B
Go
Raw Permalink Normal View History

2025-03-28 21:50:12 -04:00
package k2v_test
import (
2025-03-28 21:50:12 -04:00
k2v "code.notaphish.fyi/milas/garage-k2v-go"
"go.uber.org/goleak"
2025-03-28 21:50:12 -04:00
"os"
"testing"
)
2025-03-28 21:50:12 -04:00
const BucketEnvVar = "K2V_TEST_BUCKET"
var TestBucket = k2v.Bucket(os.Getenv(BucketEnvVar))
func TestMain(m *testing.M) {
goleak.VerifyTestMain(m)
}