grumbulon
3a0a8f015a
All checks were successful
continuous-integration/drone/push Build is passing
refactor Co-authored-by: Sam Therapy <sam@samtherapy.net> Reviewed-on: #110 Reviewed-by: Sam <sam@samtherapy.net>
18 lines
314 B
Go
18 lines
314 B
Go
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package util_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"git.froth.zone/sam/awl/pkg/logawl"
|
|
"git.froth.zone/sam/awl/pkg/util"
|
|
"gotest.tools/v3/assert"
|
|
)
|
|
|
|
func TestInitLogger(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
logger := util.InitLogger(0)
|
|
assert.Equal(t, logger.Level, logawl.Level(0))
|
|
}
|