Fix routing bugs in TicketsController spec
This commit is contained in:
parent
5f7b284c4f
commit
b4ebaa8102
1 changed files with 8 additions and 9 deletions
|
@ -6,32 +6,31 @@ describe TicketsController, :type => :controller do
|
|||
describe 'authorization' do
|
||||
include_context :shared_user_context
|
||||
describe 'rejects unauthorized users' do
|
||||
describe 'update' do
|
||||
include_context :open_to_event_editor, :put, :update, nonprofit_id: :__our_np, event_id: :__our_event
|
||||
end
|
||||
|
||||
describe 'index' do
|
||||
include_context :open_to_event_editor, :get, :index, nonprofit_id: :__our_np, event_id: :__our_event
|
||||
end
|
||||
|
||||
describe 'update' do
|
||||
include_context :open_to_event_editor, :put, :update, nonprofit_id: :__our_np, event_id: :__our_event, id: 1111
|
||||
end
|
||||
|
||||
describe 'destroy' do
|
||||
include_context :open_to_event_editor, :delete, :destroy, nonprofit_id: :__our_np, event_id: :__our_event
|
||||
include_context :open_to_event_editor, :delete, :destroy, nonprofit_id: :__our_np, event_id: :__our_event, id: 1111
|
||||
end
|
||||
|
||||
describe 'delete_card_for_ticket' do
|
||||
include_context :open_to_np_associate, :post, :delete_card_for_ticket, nonprofit_id: :__our_np, event_id: :__our_event, id: 11111
|
||||
end
|
||||
|
||||
|
||||
end
|
||||
|
||||
describe 'open to all' do
|
||||
describe 'create' do
|
||||
include_context :open_to_all, :post, :create, nonprofit_id: :__our_np
|
||||
include_context :open_to_all, :post, :create, nonprofit_id: :__our_np, event_id: :__our_event
|
||||
end
|
||||
|
||||
describe 'add_note' do
|
||||
include_context :open_to_all, :put, :add_note, nonprofit_id: :__our_np, event_id: :__our_event
|
||||
include_context :open_to_all, :put, :add_note, nonprofit_id: :__our_np, event_id: :__our_event, id: 1111
|
||||
end
|
||||
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue