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:
authorSean McGivern <sean@mcgivern.me.uk>2017-10-30 11:53:27 +0300
committerSean McGivern <sean@mcgivern.me.uk>2017-10-30 11:53:27 +0300
commit192049a61039220bb62e88d1d173d0aeaa555297 (patch)
tree9cc7c903d3f8230e7f089c10c2e4d6976cc065be /spec
parentf03700f5e429a86934e7cd2fa958da75b722db49 (diff)
parent7dbf114f595f8ff3ff41339d81d41b7722b97d2a (diff)
Merge branch 'bvl-fix-system-hook-project-visibility' into 'master'
Use the correct project visibility in system hooks Closes #39496 See merge request gitlab-org/gitlab-ce!15065
Diffstat (limited to 'spec')
-rw-r--r--spec/services/system_hooks_service_spec.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/services/system_hooks_service_spec.rb b/spec/services/system_hooks_service_spec.rb
index 8b5d9187785..8f7aea533dc 100644
--- a/spec/services/system_hooks_service_spec.rb
+++ b/spec/services/system_hooks_service_spec.rb
@@ -63,6 +63,12 @@ describe SystemHooksService do
:group_id, :user_id, :user_username, :user_name, :user_email, :group_access
)
end
+
+ it 'includes the correct project visibility level' do
+ data = event_data(project, :create)
+
+ expect(data[:project_visibility]).to eq('private')
+ end
end
context 'event names' do