func (s *S) createTestArtifact(c *C, in *ct.Artifact) *ct.Artifact { if in.Type == "" { in.Type = "docker" } if in.URI == "" { in.URI = fmt.Sprintf("https://example.com/%s", random.String(8)) } c.Assert(s.c.CreateArtifact(in), IsNil) return in }
func (s *S) createTestArtifact(c *C, in *ct.Artifact) *ct.Artifact { if in.Type == "" { in.Type = ct.ArtifactTypeFlynn in.RawManifest = ct.ImageManifest{ Type: ct.ImageManifestTypeV1, }.RawManifest() } if in.URI == "" { in.URI = fmt.Sprintf("https://example.com/%s", random.String(8)) } c.Assert(s.c.CreateArtifact(in), IsNil) return in }