1234567891011121314151617 |
- # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- require 'rails_helper'
- RSpec.describe Issue3567AutoAssignment, db_strategy: :reset, type: :db_migration do
- context 'when setting contains article keys' do
- before do
- Setting.set('ticket_auto_assignment_selector', { 'condition'=>{ 'article.subject'=>{ 'operator' => 'contains', 'value' => 'test' } } })
- migrate
- end
- it 'config gets removed' do
- config = Setting.get('ticket_auto_assignment_selector')
- expect(config['condition']['article.subject']).to be_nil
- end
- end
- end
|