From cd5beb02dbc9e4b51aac3664c960525fc8c66c01 Mon Sep 17 00:00:00 2001 From: Jeffrey Wan Date: Thu, 17 Mar 2016 00:44:08 -0400 Subject: [PATCH] Update GETTING_STARTED.md clearer instructions --- GETTING_STARTED.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/GETTING_STARTED.md b/GETTING_STARTED.md index a14fdf9..8e0ab9b 100644 --- a/GETTING_STARTED.md +++ b/GETTING_STARTED.md @@ -44,6 +44,12 @@ RSpec.configure do |config| end end +Remember to require the above file in your spec_helper since the support folder isn't eagerly loaded + +```ruby +require 'support/factory_girl' +``` + # Test::Unit class Test::Unit::TestCase include FactoryGirl::Syntax::Methods