diff options
author | Robert Speicher <rspeicher@gmail.com> | 2015-07-22 00:39:18 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2015-07-22 00:39:18 -0400 |
commit | b42422a7a97d376fb5f78e8dfa614857d6b8d1fa (patch) | |
tree | 27e23d24667cd40d1894946232318fa68bf003d2 /spec/features/admin | |
parent | b24d5f13a5dde7ab85dce93900fa309b3485adb9 (diff) | |
download | gitlab-ce-b42422a7a97d376fb5f78e8dfa614857d6b8d1fa.tar.gz |
Move spec/features/admin/security_spec to spec/features/securityrs-security-spec-speed
Diffstat (limited to 'spec/features/admin')
-rw-r--r-- | spec/features/admin/security_spec.rb | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/spec/features/admin/security_spec.rb b/spec/features/admin/security_spec.rb deleted file mode 100644 index 175fa9d4647..00000000000 --- a/spec/features/admin/security_spec.rb +++ /dev/null @@ -1,27 +0,0 @@ -require 'spec_helper' - -describe "Admin::Projects", feature: true do - describe "GET /admin/projects" do - subject { admin_namespaces_projects_path } - - it { is_expected.to be_allowed_for :admin } - it { is_expected.to be_denied_for :user } - it { is_expected.to be_denied_for :visitor } - end - - describe "GET /admin/users" do - subject { admin_users_path } - - it { is_expected.to be_allowed_for :admin } - it { is_expected.to be_denied_for :user } - it { is_expected.to be_denied_for :visitor } - end - - describe "GET /admin/hooks" do - subject { admin_hooks_path } - - it { is_expected.to be_allowed_for :admin } - it { is_expected.to be_denied_for :user } - it { is_expected.to be_denied_for :visitor } - end -end |