Skip to content

Instantly share code, notes, and snippets.

View robertokl's full-sized avatar

Roberto Klein robertokl

  • Hoverinc
  • San Francisco, CA, USA
View GitHub Profile
@adam-e-trepanier
adam-e-trepanier / spec_helper.rb
Created July 14, 2011 19:00
Spork reload factories
Spork.each_run do
# This code will be run each time you run your specs.
AppName::Application.reload_routes!
Factory.factories.clear
Dir.glob("#{::Rails.root}/spec/factories/*.rb").each { |file| load "#{file}" }
end