12 lines
236 B
Ruby
Raw Permalink Normal View History

2024-10-28 22:07:35 +00:00
# Copyright (C) 2024 Manuel Bustillo
2024-08-11 16:29:10 +02:00
require 'rails_helper'
RSpec.describe Group, type: :model do
describe 'callbacks' do
it 'should set color before create' do
expect(create(:group).color).to be_present
end
end
2024-08-11 16:29:10 +02:00
end