mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-02-03 13:11:48 +02:00
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))
|
||
|
}
|