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