當前位置: 首頁>>代碼示例>>Golang>>正文


Golang gt.GopathTest類代碼示例

本文整理匯總了Golang中github.com/kardianos/govendor/internal/gt.GopathTest的典型用法代碼示例。如果您正苦於以下問題:Golang GopathTest類的具體用法?Golang GopathTest怎麽用?Golang GopathTest使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了GopathTest類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: ctx15

func ctx15(g *gt.GopathTest) *Context {
	c, err := NewContext(g.Current(), "vendor.json", "vendor", false)
	if err != nil {
		g.Fatal(err)
	}
	return c
}
開發者ID:fabxc,項目名稱:govendor,代碼行數:7,代碼來源:context_test.go

示例2: ctx

func ctx(g *gt.GopathTest) *Context {
	c, err := NewContext(g.Current(), relVendorFile, "vendor", false)
	if err != nil {
		g.Fatal(err)
	}
	return c
}
開發者ID:tedoc2000,項目名稱:govendor,代碼行數:7,代碼來源:context_test.go

示例3: ctx14

func ctx14(g *gt.GopathTest) *Context {
	c, err := NewContext(g.Current(), filepath.Join("internal", "vendor.json"), "internal", true)
	if err != nil {
		g.Fatal(err)
	}
	return c
}
開發者ID:fabxc,項目名稱:govendor,代碼行數:7,代碼來源:context_test.go

示例4: list

func list(g *gt.GopathTest, c *Context, name, expected string) {
	list, err := c.Status()
	if err != nil {
		g.Fatal(err)
	}
	output := &bytes.Buffer{}
	for _, item := range list {
		output.WriteString(statusItemString(item))
		output.WriteRune('\n')
	}
	if strings.TrimSpace(output.String()) != strings.TrimSpace(expected) {
		g.Fatalf("(%s) Got\n%s", name, output.String())
	}
}
開發者ID:tedoc2000,項目名稱:govendor,代碼行數:14,代碼來源:context_test.go

示例5: showVendorFile14

func showVendorFile14(g *gt.GopathTest) {
	buf, err := ioutil.ReadFile(filepath.Join(g.Current(), "internal", "vendor.json"))
	if err != nil {
		g.Fatal(err)
	}
	g.Logf("%s", buf)
}
開發者ID:fabxc,項目名稱:govendor,代碼行數:7,代碼來源:context_test.go

示例6: vendorFile

func vendorFile(g *gt.GopathTest, expected string) {
	buf, err := ioutil.ReadFile(filepath.Join(g.Current(), relVendorFile))
	if err != nil {
		g.Fatal(err)
	}
	if string(buf) != expected {
		g.Fatal("Got: ", string(buf))
	}
}
開發者ID:tedoc2000,項目名稱:govendor,代碼行數:9,代碼來源:context_test.go

示例7: vendorFile14

func vendorFile14(g *gt.GopathTest, expected string) {
	buf, err := ioutil.ReadFile(filepath.Join(g.Current(), "internal", "vendor.json"))
	if err != nil {
		g.Fatal(err)
	}
	if string(buf) != expected {
		g.Fatal("Got: ", string(buf))
	}
}
開發者ID:fabxc,項目名稱:govendor,代碼行數:9,代碼來源:context_test.go

示例8: Vendor

func Vendor(g *gt.GopathTest, name, argLine, expectedOutput string) {
	os.Setenv("GO15VENDOREXPERIMENT", "0")
	output := &bytes.Buffer{}
	args := append([]string{"testing"}, strings.Split(argLine, " ")...)
	printHelp, err := run(output, args)
	if err != nil {
		g.Fatalf("(%s) Error: %v", name, err)
	}
	if printHelp == true {
		g.Fatalf("(%s) Printed help", name)
	}
	if output.String() != expectedOutput {
		g.Fatalf("(%s) Got\n%s", name, output.String())
	}
}
開發者ID:fabxc,項目名稱:govendor,代碼行數:15,代碼來源:run_test.go

示例9: tree

func tree(g *gt.GopathTest, c *Context, name, expected string) {
	tree := make([]string, 0, 6)
	filepath.Walk(g.Current(), func(path string, info os.FileInfo, err error) error {
		if info.IsDir() {
			return nil
		}
		tree = append(tree, strings.TrimPrefix(path, g.Current()))
		return nil
	})
	sort.Strings(tree)

	output := &bytes.Buffer{}
	for _, item := range tree {
		output.WriteString(item)
		output.WriteRune('\n')
	}
	if strings.TrimSpace(output.String()) != strings.TrimSpace(expected) {
		g.Fatalf("(%s) Got\n%s", name, output.String())
	}
}
開發者ID:jpillora,項目名稱:govendor,代碼行數:20,代碼來源:context_test.go


注:本文中的github.com/kardianos/govendor/internal/gt.GopathTest類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。