add_channel_microsoft_graph_spec.rb 378 B

123456789
  1. # Copyright (C) 2012-2025 Zammad Foundation, https://zammad-foundation.org/
  2. require 'rails_helper'
  3. RSpec.describe AddChannelMicrosoftGraph, type: :db_migration do
  4. it 'does update settings with new permissions' do
  5. expect { migrate }.to change { Setting.find_by(name: 'ticket_subject_size').preferences[:permission] }.to include('admin.channel_microsoft_graph')
  6. end
  7. end