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