2012-10-04 14:13:55 +01:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Api::V1::ArchesController do
|
|
|
|
|
|
|
|
before { FactoryGirl.create(:arch) }
|
|
|
|
|
|
|
|
context 'for guest' do
|
|
|
|
it "should be able to perform index action", :anonymous_access => true do
|
2014-01-21 04:51:49 +00:00
|
|
|
get :index, format: :json
|
2012-10-04 14:13:55 +01:00
|
|
|
should render_template(:index)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to perform get_id action', :anonymous_access => false do
|
2014-01-21 04:51:49 +00:00
|
|
|
get :index, format: :json
|
2012-10-04 14:13:55 +01:00
|
|
|
response.status.should == 401
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for simple user' do
|
|
|
|
before do
|
|
|
|
stub_symlink_methods
|
|
|
|
http_login(FactoryGirl.create(:user))
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should be able to perform index action" do
|
2014-01-21 04:51:49 +00:00
|
|
|
get :index, format: :json
|
2012-10-04 14:13:55 +01:00
|
|
|
should render_template(:index)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|