Blob Blame History Raw
package osbuild2

import (
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestNewFirstBootStage(t *testing.T) {
	expectedStage := &Stage{
		Type:    "org.osbuild.first-boot",
		Options: &FirstBootStageOptions{},
	}
	actualStage := NewFirstBootStage(&FirstBootStageOptions{})
	assert.Equal(t, expectedStage, actualStage)
}