wedding-planner/spec/models/group_spec.rb

16 lines
285 B
Ruby
Raw Normal View History

2024-12-28 16:31:27 +00:00
# Copyright (C) 2024 Manuel Bustillo
2024-12-28 17:27:28 +01:00
# frozen_string_literal: true
2024-10-28 22:07:35 +00:00
# Copyright (C) 2024 Manuel Bustillo
2024-08-11 16:29:10 +02:00
require 'rails_helper'
2024-12-28 17:27:28 +01:00
RSpec.describe Group do
describe 'callbacks' do
2024-12-28 17:27:28 +01:00
it 'sets color before create' do
expect(create(:group).color).to be_present
end
end
2024-08-11 16:29:10 +02:00
end