コード例 #1
0
ファイル: docker_test.go プロジェクト: ejholmes/captain
func TestBuildImageCircleCI(t *testing.T) {
	os.Setenv("CIRCLECI", "true")
	app := App{Build: "test/noCaptainYML/Dockerfile", Image: "captain_test"}
	res := buildImage(app, "latest")
	assert.Nil(t, res, "Docker build should not return any error")
}
コード例 #2
0
ファイル: docker_test.go プロジェクト: ejholmes/captain
func TestTagImage(t *testing.T) {
	app := App{Image: "golang"}
	res := tagImage(app, "1.4", "testing")
	assert.Nil(t, res, "Docker tag should not return any error")
}
コード例 #3
0
ファイル: docker_test.go プロジェクト: ejholmes/captain
func TestBuildImage(t *testing.T) {
	app := App{Build: "test/noCaptainYML/Dockerfile", Image: "captain_test"}
	res := buildImage(app, "latest")
	assert.Nil(t, res, "Docker build should not return any error")
}