cc935dc97b
* Add checks to validate referential integrity * Add unit tests for referential integrity validation * Use EXISTS in referential integrity validation queries
14 lines
200 B
Go
14 lines
200 B
Go
package validator_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestValidator(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Validator Suite")
|
|
}
|