master
1require 'rails_helper'
2
3describe ProfilesController do
4 describe "routing" do
5 it "routes to index" do
6 expect(get: '/profiles/').to route_to("profiles#index")
7 end
8
9 it "routes to #show" do
10 expect(get: "/profiles/1").to route_to("profiles#show", id: "1")
11 end
12 end
13end