1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-26 04:22:05 +02:00
goreleaser/internal/testlib/path_test.go

45 lines
857 B
Go
Raw Normal View History

package testlib
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestCheckPath(t *testing.T) {
requireSkipped := func(tb testing.TB, skipped bool) {
tb.Helper()
t.Cleanup(func() {
require.Equalf(tb, skipped, tb.Skipped(), "expected skipped to be %v", skipped)
})
}
t.Run("local", func(t *testing.T) {
t.Setenv("CI", "false")
t.Run("in path", func(t *testing.T) {
requireSkipped(t, false)
CheckPath(t, "echo")
})
t.Run("not in path", func(t *testing.T) {
requireSkipped(t, true)
CheckPath(t, "do-not-exist")
})
})
t.Run("CI", func(t *testing.T) {
t.Setenv("CI", "true")
t.Run("in path on CI", func(t *testing.T) {
requireSkipped(t, false)
CheckPath(t, "echo")
})
t.Run("not in path on CI", func(t *testing.T) {
requireSkipped(t, false)
CheckPath(t, "do-not-exist")
})
})
}