go-ethereum/statediff/statediff_suite_test.go
Elizabeth Engelman f4ca756812 Update statediff tests to use golang test pkg
instead of ginkgo

- builder_test
- extractor_test
- publisher_test
2018-12-18 16:18:34 -06:00

17 lines
373 B
Go

package statediff_test
import (
"testing"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestStatediff(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Statediff Suite")
}
//convert this over to use built in golang library
//only save the new value, and have a pointer to the old value - not sure how this pointer will work for the CSV version