open-vault/physical/inmem_ha_test.go

16 lines
265 B
Go
Raw Normal View History

2015-04-14 19:04:15 +00:00
package physical
import (
"testing"
2016-08-19 20:45:17 +00:00
"github.com/hashicorp/vault/helper/logformat"
log "github.com/mgutz/logxi/v1"
)
2015-04-14 19:04:15 +00:00
func TestInmemHA(t *testing.T) {
2016-08-19 20:45:17 +00:00
logger := logformat.NewVaultLogger(log.LevelTrace)
inm := NewInmemHA(logger)
2015-04-14 19:04:15 +00:00
testHABackend(t, inm, inm)
}