mirror of
https://github.com/containers/podman.git
synced 2025-11-30 01:58:46 +08:00
Based on our discussion gofumpt won the vote so use that one via golangci-lint. https://github.com/containers/podman/discussions/27291 Signed-off-by: Paul Holzinger <pholzing@redhat.com>
37 lines
521 B
Go
37 lines
521 B
Go
package define
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func Test_artifact_String(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
a Artifact
|
|
want string
|
|
}{
|
|
{
|
|
name: "qemu",
|
|
a: Qemu,
|
|
want: "qemu",
|
|
},
|
|
{
|
|
name: "hyperv",
|
|
a: HyperV,
|
|
want: "hyperv",
|
|
},
|
|
{
|
|
name: "applehv",
|
|
a: AppleHV,
|
|
want: "applehv",
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
if got := tt.a.String(); got != tt.want {
|
|
t.Errorf("String() = %v, want %v", got, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|