mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
14 lines
388 B
Ruby
14 lines
388 B
Ruby
# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe HtmlSanitizerProcessingTimeout, type: :db_migration do
|
|
before do
|
|
Setting.find_by(name: 'html_sanitizer_processing_timeout').destroy
|
|
end
|
|
|
|
it 'does create the setting' do
|
|
migrate
|
|
expect(Setting.get('html_sanitizer_processing_timeout')).to eq(20)
|
|
end
|
|
end
|