2018-08-09 21:55:02 +00:00
|
|
|
package shared_test
|
2018-08-07 15:51:34 +00:00
|
|
|
|
2018-08-07 20:17:29 +00:00
|
|
|
import (
|
2019-02-12 17:18:39 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"io/ioutil"
|
2018-08-07 20:17:29 +00:00
|
|
|
"testing"
|
2018-08-07 15:51:34 +00:00
|
|
|
|
2018-08-07 20:17:29 +00:00
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
)
|
|
|
|
|
2018-08-09 21:55:02 +00:00
|
|
|
func TestShared(t *testing.T) {
|
2018-08-07 20:17:29 +00:00
|
|
|
RegisterFailHandler(Fail)
|
2018-08-09 21:55:02 +00:00
|
|
|
RunSpecs(t, "Shared Suite")
|
2018-08-07 15:51:34 +00:00
|
|
|
}
|
2019-02-12 17:18:39 +00:00
|
|
|
|
|
|
|
var _ = BeforeSuite(func() {
|
|
|
|
logrus.SetOutput(ioutil.Discard)
|
|
|
|
})
|