restic/backend/s3_test.go

18 lines
246 B
Go
Raw Normal View History

2015-05-15 21:53:00 +00:00
package backend_test
import (
"testing"
bes3 "github.com/restic/restic/backend/s3"
)
func TestS3Backend(t *testing.T) {
2015-11-06 22:00:10 +00:00
s, err := bes3.Open("play.minio.io:9000", "restictestbucket")
if err != nil {
t.Fatal(err)
}
2015-05-15 21:53:00 +00:00
testBackend(s, t)
}