コード例 #1
0
ファイル: clean_test.go プロジェクト: antonylewis/eris-cli
func testExistAndRun(t *testing.T, servName string, containerNumber int, toExist, toRun bool) {
	if err := tests.TestExistAndRun(servName, "service", containerNumber, toExist, toRun); err != nil {
		fatal(t, nil)
	}
}
コード例 #2
0
ファイル: data_test.go プロジェクト: antonylewis/eris-cli
func testExist(t *testing.T, name string, toExist bool) {
	if err := tests.TestExistAndRun(name, "data", 1, toExist, false); err != nil {
		t.Fail()
	}
}