Skip to content

Instantly share code, notes, and snippets.

@steveklabnik
Created September 5, 2011 16:43
Embed
What would you like to do?
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