mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-08 23:57:01 +02:00
12 lines
158 B
Go
12 lines
158 B
Go
package mock
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/vault/sdk/logical"
|
|
)
|
|
|
|
func TestBackend_impl(t *testing.T) {
|
|
var _ logical.Backend = new(backend)
|
|
}
|