1
0

test: pretty print result

This commit is contained in:
2023-05-14 14:06:04 +00:00
parent 87ed8da5b8
commit e10b50a41a
2 changed files with 5 additions and 0 deletions

View File

@ -2,6 +2,8 @@ package debian
import (
"testing"
"github.com/davecgh/go-spew/spew"
)
func TestGetDebianKernel(t *testing.T) {
@ -13,4 +15,6 @@ func TestGetDebianKernel(t *testing.T) {
if dk.Version.ABI != "4.17.0-2" {
t.Fatalf("wrong abi")
}
t.Logf("%s", spew.Sdump(dk))
}