1234567891011121314151617 |
- package engine_test
- import (
- "testing"
- . "github.com/onsi/ginkgo"
- . "github.com/onsi/gomega"
- )
- var _ = Describe("engine", func() {
- // Nothing to test here
- })
- func TestSuite(t *testing.T) {
- RegisterFailHandler(Fail)
- RunSpecs(t, "gosql/engine")
- }
|