Provided that I have a project factory
Factory.define :project do |p| p.sequence(:title) { |n| \"project #{n} title\" } p.sequence(:
If you are using Cucumber you can add this to a step definition:
Given(/^I reload FactoryGirl/) do FactoryGirl.reload end
Then just call it when needed.