mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
34 lines
536 B
Go
34 lines
536 B
Go
package swift
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func Test_cocoaPodsPackageURL(t *testing.T) {
|
|
type args struct {
|
|
name string
|
|
version string
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
want string
|
|
}{
|
|
{
|
|
name: "go case",
|
|
args: args{
|
|
name: "name",
|
|
version: "v0.1.0",
|
|
},
|
|
want: "pkg:cocoapods/name@v0.1.0",
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
assert.Equal(t, tt.want, cocoaPodsPackageURL(tt.args.name, tt.args.version))
|
|
})
|
|
}
|
|
}
|