mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-14 15:18:06 +00:00
11 lines
178 B
Go
11 lines
178 B
Go
|
package yqlib
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestGetLogger(t *testing.T) {
|
||
|
l := GetLogger()
|
||
|
if l != log {
|
||
|
t.Fatal("GetLogger should return the yq logger instance, not a copy")
|
||
|
}
|
||
|
}
|