mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
21 lines
500 B
Ruby
21 lines
500 B
Ruby
# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
require 'rails_helper'
|
|
require 'models/contexts/factory_context'
|
|
|
|
RSpec.describe KnowledgeBase::Locale, type: :model do
|
|
subject { create(:knowledge_base_locale) }
|
|
|
|
include_context 'factory'
|
|
|
|
describe 'destroying' do
|
|
include_context 'basic Knowledge Base'
|
|
|
|
it 'destroys locale' do
|
|
published_answer # populate locale
|
|
|
|
expect { primary_locale.destroy! }
|
|
.not_to raise_error
|
|
end
|
|
end
|
|
end
|