# Copyright (C) 2024 Manuel Bustillo # frozen_string_literal: true # Copyright (C) 2024 Manuel Bustillo require 'rails_helper' RSpec.describe Group do describe 'callbacks' do it 'sets color before create' do expect(create(:group).color).to be_present end end end