2025-01-13 21:37:02 +01:00
|
|
|
# Copyright (C) 2024-2025 LibreWeddingPlanner contributors
|
2024-12-28 16:31:27 +00:00
|
|
|
|
2025-01-13 21:37:02 +01:00
|
|
|
# Copyright (C) 2024-2025 LibreWeddingPlanner contributors
|
2024-10-28 22:07:35 +00:00
|
|
|
|
2024-12-28 18:37:47 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-08-11 16:29:10 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-12-28 17:27:28 +01:00
|
|
|
RSpec.describe Group do
|
2024-11-03 14:41:09 +01:00
|
|
|
describe 'callbacks' do
|
2024-12-28 17:27:28 +01:00
|
|
|
it 'sets color before create' do
|
2024-11-03 14:41:09 +01:00
|
|
|
expect(create(:group).color).to be_present
|
|
|
|
end
|
|
|
|
end
|
2024-08-11 16:29:10 +02:00
|
|
|
end
|