2011-10-08 23:36:38 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe "Admin::Projects" do
|
2011-10-26 15:46:25 +02:00
|
|
|
describe "GET /admin/projects" do
|
2012-08-25 19:43:55 +02:00
|
|
|
subject { admin_projects_path }
|
|
|
|
|
|
|
|
it { should be_allowed_for :admin }
|
|
|
|
it { should be_denied_for :user }
|
|
|
|
it { should be_denied_for :visitor }
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe "GET /admin/users" do
|
2012-08-25 19:43:55 +02:00
|
|
|
subject { admin_users_path }
|
|
|
|
|
|
|
|
it { should be_allowed_for :admin }
|
|
|
|
it { should be_denied_for :user }
|
|
|
|
it { should be_denied_for :visitor }
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
2012-07-15 16:36:06 +02:00
|
|
|
describe "GET /admin/hooks" do
|
2012-08-25 19:43:55 +02:00
|
|
|
subject { admin_hooks_path }
|
|
|
|
|
|
|
|
it { should be_allowed_for :admin }
|
|
|
|
it { should be_denied_for :user }
|
|
|
|
it { should be_denied_for :visitor }
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
end
|