aeea7628d6
Logging in the backend is a good thing. This is a noisy interface change but should be a functional noop.
15 lines
214 B
Go
15 lines
214 B
Go
package physical
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func TestInmem(t *testing.T) {
|
|
logger := log.New(os.Stderr, "", log.LstdFlags)
|
|
inm := NewInmem(logger)
|
|
testBackend(t, inm)
|
|
testBackend_ListPrefix(t, inm)
|
|
}
|