mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-08 23:57:01 +02:00
13 lines
185 B
Go
13 lines
185 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package logical
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestInmemStorage(t *testing.T) {
|
|
TestStorage(t, new(InmemStorage))
|
|
}
|