mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-26 04:22:05 +02:00
032a105533
* feat: validate goos, goarch, goarm and gomips Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: lint Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
25 lines
523 B
Go
25 lines
523 B
Go
package build
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/goreleaser/goreleaser/pkg/config"
|
|
"github.com/goreleaser/goreleaser/pkg/context"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
type dummy struct{}
|
|
|
|
func (*dummy) WithDefaults(build config.Build) (config.Build, error) {
|
|
return build, nil
|
|
}
|
|
func (*dummy) Build(ctx *context.Context, build config.Build, options Options) error {
|
|
return nil
|
|
}
|
|
|
|
func TestRegisterAndGet(t *testing.T) {
|
|
var builder = &dummy{}
|
|
Register("dummy", builder)
|
|
require.Equal(t, builder, For("dummy"))
|
|
}
|