13 lines
393 B
Ruby
13 lines
393 B
Ruby
|
require 'rails_helper'
|
||
|
require 'controllers/support/shared_user_context'
|
||
|
|
||
|
describe Nonprofits::ActivitiesController, :type => :controller do
|
||
|
describe 'authorization' do
|
||
|
include_context :shared_user_context
|
||
|
describe 'rejects unauthorized users' do
|
||
|
describe 'get' do
|
||
|
include_context :open_to_np_associate, :get, :index, nonprofit_id: :__our_np
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|