15 lines
468 B
Go
15 lines
468 B
Go
// +build !enterprise
|
|
|
|
package vault
|
|
|
|
import (
|
|
testing "github.com/mitchellh/go-testing-interface"
|
|
)
|
|
|
|
func testGenerateCoreKeys() (interface{}, interface{}, error) { return nil, nil, nil }
|
|
func testGetLicensingConfig(interface{}) *LicensingConfig { return &LicensingConfig{} }
|
|
func testExtraTestCoreSetup(testing.T, interface{}, *TestClusterCore) {}
|
|
func testAdjustUnderlyingStorage(tcc *TestClusterCore) {
|
|
tcc.UnderlyingStorage = tcc.physical
|
|
}
|