main
 1require 'spec_helper'
 2
 3describe LinksController do
 4  describe :index do
 5    it "should load each resource" do
 6      link = Link.create!(title: 'Facebook', url: "http://www.facebook.com", description: "Everyone posts stuff on FB")
 7      get :index
 8      assigns(:links).should include(link)
 9    end
10  end
11end