10 lines
115 B
Go
10 lines
115 B
Go
package logical
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestInmemStorage(t *testing.T) {
|
|
TestStorage(t, new(InmemStorage))
|
|
}
|