mirror of
https://github.com/octoleo/restic.git
synced 2024-11-05 04:47:51 +00:00
19 lines
321 B
Go
19 lines
321 B
Go
package backend_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
bes3 "github.com/restic/restic/backend/s3"
|
|
. "github.com/restic/restic/test"
|
|
)
|
|
|
|
func setupS3Backend(t *testing.T) *bes3.S3Backend {
|
|
return bes3.Open("play.minio.io:9000", "restictestbucket")
|
|
}
|
|
|
|
func TestS3Backend(t *testing.T) {
|
|
s := setupS3Backend(t)
|
|
|
|
testBackend(s, t)
|
|
}
|