blob: 6d6742685f3edd07c8449e38170882674fa1c1ed (
plain)
1
2
3
4
5
6
7
8
|
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe Api::UserAccountsController, type: :controller do
it { should route(:post, '/api/user_accounts').to(action: :create) }
it { should route(:get, '/api/account').to(action: :show) }
end
|