blob: c0ae825ddc86a2511343bb396578908b6d395c57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'rails_helper'
describe HomeController do
describe "routing" do
it "routes to about us" do
expect(get: 'about_us').to route_to("home#about_us")
end
it "routes to why" do
expect(get: 'why_cakeside').to route_to("home#why_cakeside")
end
end
end
|