Skip to content

Instantly share code, notes, and snippets.

@pithyless
Forked from steveklabnik/after.rb
Created January 1, 2012 13:17
Show Gist options
  • Save pithyless/1547312 to your computer and use it in GitHub Desktop.
Save pithyless/1547312 to your computer and use it in GitHub Desktop.
dont load rails!
require 'active_record'
require "#{Rails.root}/app/models/user"
describe User do
it "does something sweet"
it "does something cool"
end
require 'spec_helper' #slooooow loads all of rails and everything
describe User do
it "does something sweet"
it "does something cool"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment