podman-build/pkg/domain/infra/abi/images_test.go
2025-10-11 12:30:35 +09:00

21 lines
460 B
Go

//go:build !remote
package abi
import (
"testing"
"github.com/containers/common/libimage"
"github.com/stretchr/testify/assert"
)
// This is really intended to verify what happens with a
// nil pointer in layer.Created, but we'll just sanity
// check round tripping 42.
func TestToDomainHistoryLayer(t *testing.T) {
var layer libimage.ImageHistory
layer.Size = 42
newLayer := toDomainHistoryLayer(&layer)
assert.Equal(t, layer.Size, newLayer.Size)
}