grim/convey

Update to Go 1.21 and use some new helpers

5 months ago, Elliott Sales de Andrade
adb6eb2a7d21
Update to Go 1.21 and use some new helpers

`strings.Cut` was added in 1.18, and `maps`/`slices` in 1.21.

Testing Done:
Ran `go test ./...`

Reviewed at https://reviews.imfreedom.org/r/2870/
package podman
import (
"testing"
"github.com/stretchr/testify/assert"
"keep.imfreedom.org/grim/convey/yaml"
)
func TestPushString(t *testing.T) {
p := &Push{
Tags: yaml.StringOrSlice{"foo"},
}
assert.NoError(t, p.Valid())
}
func TestPushSlice(t *testing.T) {
p := &Push{
Tags: []string{"foo", "bar"},
}
assert.NoError(t, p.Valid())
}
func TestPushTagsRequired(t *testing.T) {
p := &Push{}
assert.ErrorIs(t, p.Valid(), ErrNoTags)
}