home_routing_spec.rb 175 Bytes
require "spec_helper"

describe HomeController do
  describe "routing" do
    it { should route(:get, '/').
                  to(controller: :home, action: :index) }
  end
end