github.com/mook-as/cf-cli@v7.0.0-beta.28.0.20200120190804-b91c115fae48+incompatible/actor/loggingaction/loggingaction_suite_test.go (about)

     1  package loggingaction_test
     2  
     3  import (
     4  	log "github.com/sirupsen/logrus"
     5  
     6  	"testing"
     7  
     8  	. "github.com/onsi/ginkgo"
     9  	. "github.com/onsi/gomega"
    10  )
    11  
    12  func TestLoggingaction(t *testing.T) {
    13  	RegisterFailHandler(Fail)
    14  	RunSpecs(t, "Loggingaction Suite")
    15  }
    16  
    17  var _ = BeforeEach(func() {
    18  	log.SetLevel(log.PanicLevel)
    19  })