github.com/liamawhite/cli-with-i18n@v6.32.1-0.20171122084555-dede0a5c3448+incompatible/cf/commands/pluginrepo/plugin_repo_suite_test.go (about)

     1  package pluginrepo_test
     2  
     3  import (
     4  	"github.com/liamawhite/cli-with-i18n/cf/commands/pluginrepo"
     5  	"github.com/liamawhite/cli-with-i18n/cf/i18n"
     6  	"github.com/liamawhite/cli-with-i18n/util/testhelpers/configuration"
     7  
     8  	. "github.com/onsi/ginkgo"
     9  	. "github.com/onsi/gomega"
    10  
    11  	"testing"
    12  )
    13  
    14  func TestPluginRepo(t *testing.T) {
    15  	config := configuration.NewRepositoryWithDefaults()
    16  	i18n.T = i18n.Init(config)
    17  
    18  	_ = pluginrepo.RepoPlugins{}
    19  
    20  	RegisterFailHandler(Fail)
    21  	RunSpecs(t, "PluginRepo Suite")
    22  }