mirror of
https://github.com/octoleo/restic.git
synced 2024-11-04 20:37:49 +00:00
13 lines
177 B
Go
13 lines
177 B
Go
package backend_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/restic/restic/backend"
|
|
)
|
|
|
|
func TestMemoryBackend(t *testing.T) {
|
|
be := backend.NewMemoryBackend()
|
|
testBackend(be, t)
|
|
}
|