2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-08-24 13:57:50 +00:00
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Issue2455FollowUpAssignment, type: :db_migration do
|
|
|
|
let!(:group) { create(:group, follow_up_assignment: false) }
|
|
|
|
|
|
|
|
it 'sets groups to follow_up_assignment true' do
|
|
|
|
expect { migrate }.to change { group.reload.follow_up_assignment }.to(true)
|
|
|
|
end
|
|
|
|
end
|