2
2
mirror of https://github.com/octoleo/restic.git synced 2024-09-21 11:29:02 +00:00
restic/backend/mem_backend_test.go

13 lines
177 B
Go
Raw Normal View History

2015-11-22 15:12:00 +00:00
package backend_test
import (
"testing"
"github.com/restic/restic/backend"
)
func TestMemoryBackend(t *testing.T) {
be := backend.NewMemoryBackend()
testBackend(be, t)
}