github.com/rakutentech/cli@v6.12.5-0.20151006231303-24468b65536e+incompatible/cf/app_files/app_files_suite_test.go (about) 1 package app_files_test 2 3 import ( 4 "testing" 5 6 "github.com/cloudfoundry/cli/cf/i18n" 7 "github.com/cloudfoundry/cli/cf/i18n/detection" 8 "github.com/cloudfoundry/cli/testhelpers/configuration" 9 . "github.com/onsi/ginkgo" 10 . "github.com/onsi/gomega" 11 ) 12 13 func TestAppFiles(t *testing.T) { 14 config := configuration.NewRepositoryWithDefaults() 15 i18n.T = i18n.Init(config, &detection.JibberJabberDetector{}) 16 17 RegisterFailHandler(Fail) 18 RunSpecs(t, "App Files Suite") 19 }