categraf/inputs/mtail/internal/testutil/short.go

16 lines
261 B
Go

// Copyright 2020 Google Inc. All Rights Reserved.
// This file is available under the Apache license.
package testutil
import (
"testing"
)
func SkipIfShort(tb testing.TB) {
tb.Helper()
if testing.Short() {
tb.Skip("skipping test in -short mode")
}
}