github.com/ablease/cli@v6.37.1-0.20180613014814-3adbb7d7fb19+incompatible/cf/api/spacequotas/space_quotas_suite_test.go (about)

     1  package spacequotas_test
     2  
     3  import (
     4  	"code.cloudfoundry.org/cli/cf/i18n"
     5  	"code.cloudfoundry.org/cli/cf/util/testhelpers/configuration"
     6  	. "github.com/onsi/ginkgo"
     7  	. "github.com/onsi/gomega"
     8  
     9  	"testing"
    10  )
    11  
    12  func TestSpaceQuotas(t *testing.T) {
    13  	config := configuration.NewRepositoryWithDefaults()
    14  	i18n.T = i18n.Init(config)
    15  
    16  	RegisterFailHandler(Fail)
    17  	RunSpecs(t, "SpaceQuotas Suite")
    18  }