blob: 43e7439b01c6acc267291edd3889d4e6e638d99b (
plain)
1
2
3
4
5
6
7
8
|
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe Api::AuthenticationsController, type: :controller do
it { should route(:post, '/api/authenticate').to(action: :create) }
it { should route(:delete, '/api/logout').to(action: :destroy) }
end
|