1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-01 13:07:49 +02:00
goreleaser/internal/ids/ids_test.go
2019-05-07 07:18:35 -03:00

23 lines
392 B
Go

package ids
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestIDs(t *testing.T) {
var ids = New()
ids.Inc("foo")
ids.Inc("bar")
require.NoError(t, ids.Validate())
}
func TestIDsError(t *testing.T) {
var ids = New()
ids.Inc("foo")
ids.Inc("bar")
ids.Inc("foo")
require.EqualError(t, ids.Validate(), "found 2 items with the ID 'foo', please fix your config")
}