2018-09-18 03:03:00 +00:00
|
|
|
// +build !enterprise
|
|
|
|
|
|
|
|
package vault
|
|
|
|
|
2019-02-06 02:01:18 +00:00
|
|
|
import (
|
|
|
|
testing "github.com/mitchellh/go-testing-interface"
|
|
|
|
)
|
2018-09-18 03:03:00 +00:00
|
|
|
|
|
|
|
func testGenerateCoreKeys() (interface{}, interface{}, error) { return nil, nil, nil }
|
|
|
|
func testGetLicensingConfig(interface{}) *LicensingConfig { return &LicensingConfig{} }
|
|
|
|
func testExtraClusterCoresTestSetup(testing.T, interface{}, []*TestClusterCore) {}
|
2019-02-06 02:01:18 +00:00
|
|
|
func testAdjustTestCore(_ *CoreConfig, tcc *TestClusterCore) {
|
|
|
|
tcc.UnderlyingStorage = tcc.physical
|
|
|
|
}
|