2014-09-02 18:07:02 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe "Admin::Projects", feature: true do
|
2015-09-11 14:41:01 +05:30
|
|
|
include AccessMatchers
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
describe "GET /admin/projects" do
|
2015-04-26 12:48:37 +05:30
|
|
|
subject { admin_namespaces_projects_path }
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
it { is_expected.to be_allowed_for :admin }
|
|
|
|
it { is_expected.to be_denied_for :user }
|
|
|
|
it { is_expected.to be_denied_for :visitor }
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET /admin/users" do
|
|
|
|
subject { admin_users_path }
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
it { is_expected.to be_allowed_for :admin }
|
|
|
|
it { is_expected.to be_denied_for :user }
|
|
|
|
it { is_expected.to be_denied_for :visitor }
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET /admin/hooks" do
|
|
|
|
subject { admin_hooks_path }
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
it { is_expected.to be_allowed_for :admin }
|
|
|
|
it { is_expected.to be_denied_for :user }
|
|
|
|
it { is_expected.to be_denied_for :visitor }
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|