Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/organizations/organization_detail_spec.rb')
-rw-r--r--spec/models/organizations/organization_detail_spec.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/spec/models/organizations/organization_detail_spec.rb b/spec/models/organizations/organization_detail_spec.rb
new file mode 100644
index 00000000000..3f44a9cc637
--- /dev/null
+++ b/spec/models/organizations/organization_detail_spec.rb
@@ -0,0 +1,26 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Organizations::OrganizationDetail, type: :model, feature_category: :cell do
+ describe 'associations' do
+ it { is_expected.to belong_to(:organization).inverse_of(:organization_detail) }
+ end
+
+ describe 'validations' do
+ it { is_expected.to validate_presence_of(:organization) }
+ it { is_expected.to validate_length_of(:description).is_at_most(1024) }
+ end
+
+ it_behaves_like Avatarable do
+ let(:model) { create(:organization_detail) }
+ end
+
+ context 'with uploads' do
+ it_behaves_like 'model with uploads', false do
+ let(:model_object) { create(:organization_detail) }
+ let(:upload_attribute) { :avatar }
+ let(:uploader_class) { AttachmentUploader }
+ end
+ end
+end