package osbuild1 import ( "testing" "github.com/stretchr/testify/assert" ) func TestNewRhsmStage(t *testing.T) { expectedStage := &Stage{ Name: "org.osbuild.rhsm", Options: &RHSMStageOptions{}, } actualStage := NewRHSMStage(&RHSMStageOptions{}) assert.Equal(t, expectedStage, actualStage) }