21 lines
388 B
Go
21 lines
388 B
Go
package inmem
|
|
|
|
import (
|
|
"testing"
|
|
|
|
log "github.com/hashicorp/go-hclog"
|
|
"github.com/hashicorp/vault/helper/logging"
|
|
"github.com/hashicorp/vault/physical"
|
|
)
|
|
|
|
func TestInmem(t *testing.T) {
|
|
logger := logging.NewVaultLogger(log.Debug)
|
|
|
|
inm, err := NewInmem(nil, logger)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
physical.ExerciseBackend(t, inm)
|
|
physical.ExerciseBackend_ListPrefix(t, inm)
|
|
}
|