factory_girl.rb 274 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 require 'factory_girl_rails' RSpec.configure do |config| config.include FactoryGirl::Syntax::Methods end # RSpec without Rails RSpec.configure do |config| config.include FactoryGirl::Syntax::Methods config.before(:suite) do FactoryGirl.find_definitions end end