forked from TrueCloudLab/restic
13 lines
194 B
Go
13 lines
194 B
Go
package storage_test
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
|
|
"testing"
|
|
)
|
|
|
|
func TestStorage(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Storage Suite")
|
|
}
|