mirror of
https://github.com/kopia/kopia.git
synced 2026-03-13 11:46:55 -04:00
13 lines
213 B
Go
13 lines
213 B
Go
package storagetesting
|
|
|
|
import "testing"
|
|
|
|
func TestMapStorage(t *testing.T) {
|
|
data := map[string][]byte{}
|
|
r := NewMapStorage(data)
|
|
if r == nil {
|
|
t.Errorf("unexpected result: %v", r)
|
|
}
|
|
VerifyStorage(t, r)
|
|
}
|