# 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