mirror of
https://github.com/octoleo/restic.git
synced 2024-11-05 04:47:51 +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)
|
||
|
}
|