12 lines
236 B
Ruby
12 lines
236 B
Ruby
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
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
|
|
end
|