1require 'spec_helper' 2 3describe "Neighbourhoods" do 4 describe "GET /neighbourhoods" do 5 it "should connect to the index page" do 6 get neighbourhoods_path 7 response.status.should be(200) 8 end 9 end 10end