implement a function to export a corpus file

The file name of that file is calculated to be the SHA1 sum of the contents.
This commit is contained in:
Marten Seemann 2020-08-25 10:59:59 +07:00
parent 274b898ad3
commit 9a8e39327b
3 changed files with 102 additions and 0 deletions

View file

@ -0,0 +1,13 @@
package helper
import (
"testing"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestHelper(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Helper Suite")
}