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


Golang GopathTest.Current方法代碼示例

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


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

示例1: 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

示例2: 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

示例3: 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

示例4: 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

示例5: 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

示例6: 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

示例7: 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.Current方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。