mirror of
https://github.com/goreleaser/goreleaser.git
synced 2024-12-29 01:44:39 +02:00
860b4a8f81
Signed-off-by: Carlos Becker <caarlos0@gmail.com>
23 lines
401 B
Go
23 lines
401 B
Go
package ids
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestIDs(t *testing.T) {
|
|
ids := New("foos")
|
|
ids.Inc("foo")
|
|
ids.Inc("bar")
|
|
require.NoError(t, ids.Validate())
|
|
}
|
|
|
|
func TestIDsError(t *testing.T) {
|
|
ids := New("builds")
|
|
ids.Inc("foo")
|
|
ids.Inc("bar")
|
|
ids.Inc("foo")
|
|
require.EqualError(t, ids.Validate(), "found 2 builds with the ID 'foo', please fix your config")
|
|
}
|