github.com/asifdxtreme/cli@v6.1.3-0.20150123051144-9ead8700b4ae+incompatible/cf/commands/serviceaccess/serviceaccess_suite_test.go (about)

     1  package serviceaccess_test
     2  
     3  import (
     4  	"github.com/cloudfoundry/cli/cf/i18n"
     5  	"github.com/cloudfoundry/cli/cf/i18n/detection"
     6  	"github.com/cloudfoundry/cli/testhelpers/configuration"
     7  
     8  	. "github.com/onsi/ginkgo"
     9  	. "github.com/onsi/gomega"
    10  
    11  	"testing"
    12  )
    13  
    14  func TestServiceAccess(t *testing.T) {
    15  	config := configuration.NewRepositoryWithDefaults()
    16  	i18n.T = i18n.Init(config, &detection.JibberJabberDetector{})
    17  
    18  	RegisterFailHandler(Fail)
    19  	RunSpecs(t, "Service Access Suite")
    20  }