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:
authorBob Van Landuyt <bob@vanlanduyt.co>2018-04-06 17:02:36 +0300
committerBob Van Landuyt <bob@vanlanduyt.co>2018-04-11 11:51:15 +0300
commit12dd2b0cc0cf6dd8dc43ff8b8df8687268ba4af5 (patch)
tree65dd7c5467b931dc1777214dc1416c78add7891a /spec/views
parent8ad9c4e873f2185e8bbfa6f363db32dbbba27141 (diff)
Share collaboration check between view and presenter
Diffstat (limited to 'spec/views')
-rw-r--r--spec/views/projects/tree/show.html.haml_spec.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/views/projects/tree/show.html.haml_spec.rb b/spec/views/projects/tree/show.html.haml_spec.rb
index 3b098320ad7..6fa878eceaf 100644
--- a/spec/views/projects/tree/show.html.haml_spec.rb
+++ b/spec/views/projects/tree/show.html.haml_spec.rb
@@ -12,6 +12,7 @@ describe 'projects/tree/show' do
assign(:lfs_blob_ids, [])
allow(view).to receive(:can?).and_return(true)
+ allow(view).to receive(:can_contribute_to_project?).and_return(true)
allow(view).to receive(:can_collaborate_with_project?).and_return(true)
allow(view).to receive_message_chain('user_access.can_push_to_branch?').and_return(true)
allow(view).to receive(:current_application_settings).and_return(Gitlab::CurrentSettings.current_application_settings)