diff --git a/internal/pipe/blob/blob_test.go b/internal/pipe/blob/blob_test.go index feb278dae..b00e7593e 100644 --- a/internal/pipe/blob/blob_test.go +++ b/internal/pipe/blob/blob_test.go @@ -68,6 +68,10 @@ func TestDefaults(t *testing.T) { Provider: "azblob", IDs: []string{"foo", "bar"}, }, + { + Bucket: "foobar", + Provider: "gcs", + }, }, }) require.NoError(t, Pipe{}.Default(ctx)) @@ -78,6 +82,11 @@ func TestDefaults(t *testing.T) { Folder: "{{ .ProjectName }}/{{ .Tag }}", IDs: []string{"foo", "bar"}, }, + { + Bucket: "foobar", + Provider: "gcs", + Folder: "{{ .ProjectName }}/{{ .Tag }}", + }, }, ctx.Config.Blobs) }