move capybara scenarios to spec/features

This commit is contained in:
Dmitriy Zaporozhets 2013-02-21 10:41:37 +02:00
parent 9f722427e5
commit 03f6a28ec0
18 changed files with 3 additions and 1 deletions

View file

@ -0,0 +1,49 @@
require 'spec_helper'
describe "Users Security" do
describe "Project" do
before do
@u1 = create(: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/account" do
subject { account_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/design" do
subject { design_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
end
end