2024-12-09 11:04:46 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Admin::TermsOfService::DistributionsController do
|
|
|
|
render_views
|
|
|
|
|
2025-01-03 09:28:14 +01:00
|
|
|
let(:user) { Fabricate(:admin_user) }
|
2024-12-09 11:04:46 +01:00
|
|
|
let(:terms_of_service) { Fabricate(:terms_of_service, notification_sent_at: nil) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in user, scope: :user
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST #create' do
|
|
|
|
it 'returns http success' do
|
|
|
|
post :create, params: { terms_of_service_id: terms_of_service.id }
|
|
|
|
|
|
|
|
expect(response).to redirect_to(admin_terms_of_service_index_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|