master
 1require "rails_helper"
 2
 3describe HomeController do
 4  it "should render the about us page" do
 5    get "about_us"
 6    expect(response).to be_success
 7  end
 8
 9  it "should render the why cakeside page" do
10    get "why_cakeside"
11    expect(response).to be_success
12  end
13end