2018-09-26 14:42:52 +00:00
|
|
|
package flop_kick_test
|
|
|
|
|
|
|
|
import (
|
2019-02-12 17:18:39 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"io/ioutil"
|
2018-09-26 14:42:52 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestFlopKick(t *testing.T) {
|
|
|
|
RegisterFailHandler(Fail)
|
|
|
|
RunSpecs(t, "FlopKick Suite")
|
|
|
|
}
|
2019-02-12 17:18:39 +00:00
|
|
|
|
|
|
|
var _ = BeforeSuite(func() {
|
|
|
|
logrus.SetOutput(ioutil.Discard)
|
|
|
|
})
|