本文整理汇总了Golang中github.com/lotreal/docker-pods/src/sh.Command.Text方法的典型用法代码示例。如果您正苦于以下问题:Golang Command.Text方法的具体用法?Golang Command.Text怎么用?Golang Command.Text使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/lotreal/docker-pods/src/sh.Command
的用法示例。
在下文中一共展示了Command.Text方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: TestFoo
func TestFoo(t *testing.T) {
cmd := sh.Command{"foo"}
_, err := cmd.Run()
if err.Error() != "exit status 127" {
t.Errorf("command(%s) should exit with 127, but is: %#v", cmd.Text(), err.Error())
}
}
示例2: TestRun
func TestRun(t *testing.T) {
cmd := sh.Command{"echo -n 12; echo 34"}
out, _ := cmd.Run()
if out != "1234" {
t.Errorf("command(%s) should output 1234, but is: %#v", cmd.Text(), out)
}
}
示例3: TestLines
func TestLines(t *testing.T) {
cmd := sh.Command{"echo 12; echo 34"}
out, _ := cmd.Lines()
if len(out) != 2 {
t.Errorf("command(%s) should output 2 line, but is: %#v", cmd.Text(), out)
}
}