31 lines
711 B
Ruby
31 lines
711 B
Ruby
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
|
|
get :index, format: :json
|
|
should render_template(:index)
|
|
end
|
|
|
|
it 'should be able to perform get_id action', :anonymous_access => false do
|
|
get :index, format: :json
|
|
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
|
|
get :index, format: :json
|
|
should render_template(:index)
|
|
end
|
|
end
|
|
end
|