diff --git a/internal/osbuild/groups_stage_test.go b/internal/osbuild/groups_stage_test.go new file mode 100644 index 000000000..a8b3ff633 --- /dev/null +++ b/internal/osbuild/groups_stage_test.go @@ -0,0 +1,16 @@ +package osbuild + +import ( + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestNewGroupsStage(t *testing.T) { + expectedStage := &Stage{ + Name: "org.osbuild.groups", + Options: &GroupsStageOptions{}, + } + actualStage := NewGroupsStage(&GroupsStageOptions{}) + assert.Equal(t, expectedStage, actualStage) +}