saasitone/pkg/log/log_test.go
2024-07-09 17:57:25 -07:00

23 lines
383 B
Go

package log
import (
"testing"
"github.com/labstack/echo/v4"
"github.com/stretchr/testify/assert"
"git.grosinger.net/tgrosinger/saasitone/pkg/tests"
)
func TestCtxSet(t *testing.T) {
ctx, _ := tests.NewContext(echo.New(), "/")
logger := Ctx(ctx)
assert.NotNil(t, logger)
logger = logger.With("a", "b")
Set(ctx, logger)
got := Ctx(ctx)
assert.Equal(t, got, logger)
}