Skip to content

Instantly share code, notes, and snippets.

View blithe's full-sized avatar

Blithe Rocher blithe

View GitHub Profile
@jwo
jwo / 1_explanation.md
Created October 29, 2012 16:41
No Instance Variables in Specs (for @Blighte)

(this started on twitter)

The microposts spec starts out with

let(:user) { FactoryGirl.create(:user) }
  before do
    # This code is wrong!
    @micropost = Micropost.new(content: "Lorem ipsum", user_id: user.id)
 end