docbrown/spec/routing/profile_admin_routes_spec.rb
Daniel Uber 8276d1d8c6
Remove profile admin feature flag (#17194)
Remove test cases built around it (modified when the guards were removed).
2022-04-11 09:27:35 -05:00

11 lines
279 B
Ruby

require "rails_helper"
RSpec.describe "Profile admin routes", type: :routing 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