Add one final test for the logger feature

pull/40/head
Vinícius Garcia 2023-07-11 23:39:50 -03:00
parent 08247e5b82
commit 5513a0c68d
1 changed files with 19 additions and 0 deletions

19
logger_test.go Normal file
View File

@ -0,0 +1,19 @@
package ksql
import (
"context"
"testing"
tt "github.com/vingarcia/ksql/internal/testtools"
)
func TestCtxLog(t *testing.T) {
ctx := context.Background()
t.Run("should not log anything nor panic if logger is nil", func(t *testing.T) {
panicPayload := tt.PanicHandler(func() {
ctxLog(ctx, "fakeQuery", []interface{}{}, nil)
})
tt.AssertEqual(t, panicPayload, nil)
})
}