You've already forked goreleaser
mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-07-07 01:07:10 +02:00
15 lines
264 B
Go
15 lines
264 B
Go
![]() |
package static
|
||
|
|
||
|
import (
|
||
|
"strings"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/goreleaser/goreleaser/pkg/config"
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestExampleConfig(t *testing.T) {
|
||
|
_, err := config.LoadReader(strings.NewReader(ExampleConfig))
|
||
|
assert.NoError(t, err)
|
||
|
}
|