Add hashing package

This commit is contained in:
Alexander Neumann 2014-04-06 12:22:58 +02:00
commit c54facf66b
3 changed files with 198 additions and 0 deletions

View file

@ -0,0 +1,12 @@
package hashing_test
import (
"testing"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestHashing(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Hashing Suite")
}