20 lines
269 B
Go
20 lines
269 B
Go
|
package tend_test
|
||
|
|
||
|
import (
|
||
|
"io/ioutil"
|
||
|
"log"
|
||
|
"testing"
|
||
|
|
||
|
. "github.com/onsi/ginkgo"
|
||
|
. "github.com/onsi/gomega"
|
||
|
)
|
||
|
|
||
|
func TestTend(t *testing.T) {
|
||
|
RegisterFailHandler(Fail)
|
||
|
RunSpecs(t, "Tend Suite")
|
||
|
}
|
||
|
|
||
|
var _ = BeforeSuite(func() {
|
||
|
log.SetOutput(ioutil.Discard)
|
||
|
})
|