1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2025-03-16 00:00:05 +01:00
restic/backend/gcs_test.go
2015-09-16 00:43:55 -04:00

12 lines
166 B
Go

package backend_test
import (
"testing"
"github.com/restic/restic/backend/gcs"
)
func TestGCSBackend(t *testing.T) {
s := gcs.OpenMemory()
testBackend(s, t)
}