mirror of
https://github.com/octoleo/restic.git
synced 2024-11-05 04:47:51 +00:00
14 lines
197 B
Go
14 lines
197 B
Go
package server_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/restic/restic/test"
|
|
)
|
|
|
|
func TestRepo(t *testing.T) {
|
|
s := SetupBackend(t)
|
|
defer TeardownBackend(t, s)
|
|
_ = SetupKey(t, s, TestPassword)
|
|
}
|