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

13 lines
166 B
Go
Raw Normal View History

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