docbrown/spec/routing/profile_admin_routes_spec.rb
Mac Siri 842e6880b8
Routine rubocop fix on /spec (#19217)
* Softrun rubocop

* Hardrun rubocop (-A)

* Change a rubocop rule

* Add missing cops

* Undo & redo rubocop -A
2023-03-21 09:55:26 -04:00

11 lines
263 B
Ruby

require "rails_helper"
RSpec.describe "Profile admin routes" do
it "renders the profile admin route" do
expect(get: admin_profile_fields_path).to route_to(
controller: "admin/profile_fields",
action: "index",
locale: nil,
)
end
end