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:
authorKamil Trzciński <ayufan@ayufan.eu>2018-12-14 14:53:13 +0300
committerKamil Trzciński <ayufan@ayufan.eu>2018-12-14 14:53:13 +0300
commit213891fa43b0aa3edf28011bad25b42a490000d1 (patch)
tree634fc445217543dae0804ad96463fd6a95c3da41 /spec/models
parent1d0eadc470a2c7324d002e923eb76ae932862354 (diff)
parentb782ba1113970728989eebdf4c8fc44f8091c8d8 (diff)
Merge branch 'ac-releases-name-sha-author' into 'master'
Add name, author and sha to releases See merge request gitlab-org/gitlab-ce!23763
Diffstat (limited to 'spec/models')
-rw-r--r--spec/models/release_spec.rb1
-rw-r--r--spec/models/user_spec.rb1
2 files changed, 2 insertions, 0 deletions
diff --git a/spec/models/release_spec.rb b/spec/models/release_spec.rb
index 3f86347c3ae..51725eeacac 100644
--- a/spec/models/release_spec.rb
+++ b/spec/models/release_spec.rb
@@ -7,6 +7,7 @@ RSpec.describe Release do
describe 'associations' do
it { is_expected.to belong_to(:project) }
+ it { is_expected.to belong_to(:author).class_name('User') }
end
describe 'validation' do
diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb
index ff075e65c76..8b3021113bc 100644
--- a/spec/models/user_spec.rb
+++ b/spec/models/user_spec.rb
@@ -45,6 +45,7 @@ describe User do
it { is_expected.to have_many(:uploads) }
it { is_expected.to have_many(:reported_abuse_reports).dependent(:destroy).class_name('AbuseReport') }
it { is_expected.to have_many(:custom_attributes).class_name('UserCustomAttribute') }
+ it { is_expected.to have_many(:releases).dependent(:nullify) }
describe "#abuse_report" do
let(:current_user) { create(:user) }