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:
authorValeriy Sizov <vsv2711@gmail.com>2012-07-15 18:36:06 +0400
committerValeriy Sizov <vsv2711@gmail.com>2012-07-19 01:25:10 +0400
commit655418bed2f81651c54988963713769f85d8b5da (patch)
treeb6cf82c648c1a5bcacdd7f763e1da1fc2b4d136a /spec/requests/admin
parentf5908cef19a3cd2c44be02b453fecb568b2c6c8e (diff)
System hooks: fix broken tests
Diffstat (limited to 'spec/requests/admin')
-rw-r--r--spec/requests/admin/security_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/requests/admin/security_spec.rb b/spec/requests/admin/security_spec.rb
index 0b0edb85a37..0c369740cff 100644
--- a/spec/requests/admin/security_spec.rb
+++ b/spec/requests/admin/security_spec.rb
@@ -13,9 +13,9 @@ describe "Admin::Projects" do
it { admin_users_path.should be_denied_for :visitor }
end
- describe "GET /admin/emails" do
- it { admin_emails_path.should be_allowed_for :admin }
- it { admin_emails_path.should be_denied_for :user }
- it { admin_emails_path.should be_denied_for :visitor }
+ describe "GET /admin/hooks" do
+ it { admin_hooks_path.should be_allowed_for :admin }
+ it { admin_hooks_path.should be_denied_for :user }
+ it { admin_hooks_path.should be_denied_for :visitor }
end
end