1require "rails_helper" 2 3describe "/dashboard", type: :routing do 4 it "routes to the items listing" do 5 expect(get: "/dashboard").to route_to("dashboards#show") 6 end 7end