home_routing_spec.rb 171 Bytes
require "spec_helper"

describe HomeController do
  describe "routing" do
    it 'should route to #index' do
      get('/').should route_to('home#index')
    end
  end
end