1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/spec/requests/users/destroy_spec.rb

27 lines
472 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe 'DELETE /users' do
let(:current_account) { create :account_with_user }
def make_request
delete '/users'
end
before do
sign_in current_account.user
end
specify do
expect { make_request }.not_to change(User, :count)
end
context 'after request' do
before { make_request }
specify do
expect(response).to have_http_status :method_not_allowed
end
end
end