2014-09-02 18:07:02 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
describe "Admin::Projects" do
|
2015-09-11 14:41:01 +05:30
|
|
|
include AccessMatchers
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
describe "GET /admin/projects" do
|
2017-08-17 22:00:37 +05:30
|
|
|
subject { admin_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
|