zlog/ctx_test.go

23 lines
426 B
Go
Raw Normal View History

2017-05-19 19:59:10 +00:00
package zerolog
import (
"context"
"io/ioutil"
"reflect"
"testing"
)
func TestCtx(t *testing.T) {
log := New(ioutil.Discard)
ctx := log.WithContext(context.Background())
2017-05-20 07:22:37 +00:00
log2 := Ctx(ctx)
2017-05-19 19:59:10 +00:00
if !reflect.DeepEqual(log, log2) {
2017-05-20 07:22:37 +00:00
t.Error("Ctx did not return the expected logger")
2017-05-19 19:59:10 +00:00
}
2017-05-20 07:22:37 +00:00
log2 = Ctx(context.Background())
if !reflect.DeepEqual(log2, disabledLogger) {
t.Error("Ctx did not return the expected logger")
2017-05-19 19:59:10 +00:00
}
}