vault/command/server/config_oss_test.go
Scott Miller b3ab2d966a
Move KmsLibrary code to the ent side of config parsing (#13463)
* Move KmsLibrary code to the ent side of config parsing

* Normalize config.go

* Nope, needs to be result
2021-12-16 14:57:18 -06:00

20 lines
301 B
Go

// +build !enterprise
package server
import (
"testing"
)
func TestLoadConfigFile_topLevel(t *testing.T) {
testLoadConfigFile_topLevel(t, nil)
}
func TestLoadConfigFile_json2(t *testing.T) {
testLoadConfigFile_json2(t, nil)
}
func TestParseEntropy(t *testing.T) {
testParseEntropy(t, true)
}