mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-08 03:31:59 +02:00
60e54a1368
* refactor: added middleware for action logs/error handling * refactor: moved custom changelog load from main.go * fix/refactor: CLI improvements * test: do not pollute ./dist
12 lines
199 B
Go
12 lines
199 B
Go
package middleware
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestLogging(t *testing.T) {
|
|
require.NoError(t, Logging("foo", mockAction(nil), DefaultInitialPadding)(ctx))
|
|
}
|