Files
kopia/internal/blobtesting/map_test.go
2019-11-26 06:49:49 -08:00

18 lines
250 B
Go

package blobtesting
import (
"context"
"testing"
)
func TestMapStorage(t *testing.T) {
data := DataMap{}
r := NewMapStorage(data, nil, nil)
if r == nil {
t.Errorf("unexpected result: %v", r)
}
VerifyStorage(context.Background(), t, r)
}