mirror of
https://github.com/octoleo/restic.git
synced 2024-11-16 18:15:20 +00:00
13 lines
193 B
Go
13 lines
193 B
Go
|
package hashing_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
. "github.com/onsi/ginkgo"
|
||
|
. "github.com/onsi/gomega"
|
||
|
)
|
||
|
|
||
|
func TestHashing(t *testing.T) {
|
||
|
RegisterFailHandler(Fail)
|
||
|
RunSpecs(t, "Hashing Suite")
|
||
|
}
|