14 lines
269 B
Ruby
14 lines
269 B
Ruby
# Copyright (C) 2024-2025 LibreWeddingPlanner contributors
|
|
|
|
# frozen_string_literal: true
|
|
|
|
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
|