Last Updated: February 25, 2016
·
671
· mrpollo

Debug your factories

Make sure your console environment is test

RAILS_ENV=test rails c

once you start load your spec helper

require 'spec_helper'

then you should be able to play with your factories

user = FactoryGirl.create(:user)

have fun!