Blob Blame History Raw
package osbuild1

import (
	"testing"

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

func TestNewTimezoneStage(t *testing.T) {
	expectedStage := &Stage{
		Name:    "org.osbuild.timezone",
		Options: &TimezoneStageOptions{},
	}
	actualStage := NewTimezoneStage(&TimezoneStageOptions{})
	assert.Equal(t, expectedStage, actualStage)
}