28 lines
953 B
Ruby
28 lines
953 B
Ruby
# frozen_string_literal: true
|
|
|
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
|
require 'rails_helper'
|
|
require 'controllers/support/shared_user_context'
|
|
|
|
describe RecurringDonationsController, type: :controller do
|
|
describe 'authorization' do
|
|
include_context :shared_user_context
|
|
describe 'open to all (note: edit token is checked inside methods)' do
|
|
describe 'edit' do
|
|
include_context :open_to_all, :get, :edit, nonprofit_id: :__our_np, id: '1', without_json_view: true
|
|
end
|
|
|
|
describe 'destroy' do
|
|
include_context :open_to_all, :delete, :destroy, nonprofit_id: :__our_np, id: '1'
|
|
end
|
|
|
|
describe 'update' do
|
|
include_context :open_to_all, :put, :update, nonprofit_id: :__our_np, id: '1'
|
|
end
|
|
|
|
describe 'update_amount' do
|
|
include_context :open_to_all, :put, :update_amount, nonprofit_id: :__our_np, id: '1'
|
|
end
|
|
end
|
|
end
|
|
end
|