41 lines
961 B
Ruby
41 lines
961 B
Ruby
require 'spec_helper'
|
|
|
|
describe "Users Security" do
|
|
describe "Project" do
|
|
before do
|
|
@u1 = Factory :user
|
|
end
|
|
|
|
describe "GET /login" do
|
|
it { new_user_session_path.should_not be_404_for :visitor }
|
|
end
|
|
|
|
describe "GET /keys" do
|
|
subject { keys_path }
|
|
|
|
it { should be_allowed_for @u1 }
|
|
it { should be_allowed_for :admin }
|
|
it { should be_allowed_for :user }
|
|
it { should be_denied_for :visitor }
|
|
end
|
|
|
|
describe "GET /profile" do
|
|
subject { profile_path }
|
|
|
|
it { should be_allowed_for @u1 }
|
|
it { should be_allowed_for :admin }
|
|
it { should be_allowed_for :user }
|
|
it { should be_denied_for :visitor }
|
|
end
|
|
|
|
describe "GET /profile/password" do
|
|
subject { profile_password_path }
|
|
|
|
it { should be_allowed_for @u1 }
|
|
it { should be_allowed_for :admin }
|
|
it { should be_allowed_for :user }
|
|
it { should be_denied_for :visitor }
|
|
end
|
|
end
|
|
end
|