trabajo-afectivo/spec/models/knowledge_base/translation_spec.rb
2022-01-01 14:38:12 +01:00

16 lines
555 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
require 'rails_helper'
require 'models/contexts/factory_context'
RSpec.describe KnowledgeBase::Translation, type: :model do
subject { create(:knowledge_base).translations.first }
include_context 'factory'
it { is_expected.to validate_presence_of(:title) }
it { is_expected.to validate_uniqueness_of(:kb_locale_id).scoped_to(:knowledge_base_id).with_message(%r{}) }
it { is_expected.to belong_to(:knowledge_base) }
it { is_expected.to belong_to(:kb_locale) }
end