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
path: root/spec
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzegorz@gitlab.com>2019-02-25 15:10:57 +0300
committerGrzegorz Bizon <grzegorz@gitlab.com>2019-02-25 15:10:57 +0300
commit555d2bf67f2bd40169330b1fa016877c465df020 (patch)
tree291f051ef357bc07a7c6d5a80532fef9667c8ab9 /spec
parent51c919a29a2b8f66b99dcdba6b3eb4af3389a222 (diff)
parentbb4076de4592f1246a38441367ac14e19bb368d3 (diff)
Merge branch '7861-cross-project-pipeline-dashboard-mvc-2-ce' into 'master'
Delegate last_pipeline to Project See merge request gitlab-org/gitlab-ce!25422
Diffstat (limited to 'spec')
-rw-r--r--spec/models/project_spec.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/models/project_spec.rb b/spec/models/project_spec.rb
index a78647cb89a..bcbe687f4a2 100644
--- a/spec/models/project_spec.rb
+++ b/spec/models/project_spec.rb
@@ -482,6 +482,7 @@ describe Project do
it { is_expected.to delegate_method(:name).to(:owner).with_prefix(true).with_arguments(allow_nil: true) }
it { is_expected.to delegate_method(:group_clusters_enabled?).to(:group).with_arguments(allow_nil: true) }
it { is_expected.to delegate_method(:root_ancestor).to(:namespace).with_arguments(allow_nil: true) }
+ it { is_expected.to delegate_method(:last_pipeline).to(:commit).with_arguments(allow_nil: true) }
end
describe '#to_reference_with_postfix' do