Thoughtbot awesomness
Rewrite all the tests!
You probably know about this Factory Girl definition syntax:
FactoryGirl.define do factory :user do name 'Connie Customer' end endBut did you know about this Factory Girl invocation syntax?
setup do @user = create(:user) endOr:
setup do @user = build(:user) endOr:
setup do post...