mirror of https://github.com/fluxcd/cli-utils.git
19 lines
356 B
Go
19 lines
356 B
Go
// Copyright 2021 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package jsonpath
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"k8s.io/klog/v2"
|
|
)
|
|
|
|
// TestMain executes the tests for this package, with logging enabled.
|
|
// go test github.com/fluxcd/cli-utils/pkg/jsonpath -v -args -v=5
|
|
func TestMain(m *testing.M) {
|
|
klog.InitFlags(nil)
|
|
os.Exit(m.Run())
|
|
}
|