571bc7f63a
* Update Travis to run integration tests
14 lines
214 B
Go
14 lines
214 B
Go
package integration_test
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
|
|
"testing"
|
|
)
|
|
|
|
func TestIntegrationTest(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "IntegrationTest Suite")
|
|
}
|