-
Notifications
You must be signed in to change notification settings - Fork 297
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#127] Signed-off-by: Danny Joyce <[email protected]>
- Loading branch information
Danny Joyce
committed
Apr 30, 2019
1 parent
ece98db
commit 9987505
Showing
3 changed files
with
25 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ Buildpacks: | |
|
||
Detection Order: | ||
Group #1: | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
Group #2: | ||
[email protected] | ||
|
@@ -39,7 +39,7 @@ Buildpacks: | |
|
||
Detection Order: | ||
Group #1: | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
Group #2: | ||
[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -121,7 +121,7 @@ ERROR: some local error | |
Buildpacks: buildpacks, | ||
Groups: []builder.GroupMetadata{ | ||
{Buildpacks: []builder.GroupBuildpack{ | ||
{ID: "test.bp.one", Version: "1.0.0"}, | ||
{ID: "test.bp.one", Version: "1.0.0", Optional: true}, | ||
{ID: "test.bp.two", Version: "2.0.0"}, | ||
}}}, | ||
} | ||
|
@@ -135,7 +135,7 @@ ERROR: some local error | |
Buildpacks: buildpacks, | ||
Groups: []builder.GroupMetadata{ | ||
{Buildpacks: []builder.GroupBuildpack{{ID: "test.bp.one", Version: "1.0.0"}}}, | ||
{Buildpacks: []builder.GroupBuildpack{{ID: "test.bp.two", Version: "2.0.0"}}}, | ||
{Buildpacks: []builder.GroupBuildpack{{ID: "test.bp.two", Version: "2.0.0", Optional: true}}}, | ||
}, | ||
} | ||
mockClient.EXPECT().InspectBuilder("some/image", true).Return(localInfo, nil) | ||
|
@@ -177,7 +177,7 @@ Buildpacks: | |
Detection Order: | ||
Group #1: | ||
[email protected] | ||
[email protected] (optional) | ||
[email protected] | ||
`) | ||
|
||
|
@@ -203,7 +203,7 @@ Detection Order: | |
Group #1: | ||
[email protected] | ||
Group #2: | ||
[email protected] | ||
[email protected] (optional) | ||
`) | ||
}) | ||
}) | ||
|