# Gemfile
group :test do
gem "shoulda"
gem "factory_girl"
end
Shoulda and Factory Girl macros are not loaded so I had to require the gems in test/test_helper.rb
# test/test_helper.rb
require 'shoulda'
require 'factory_girl'
Factory.definition_file_paths = [ File.join(Rails.root, 'test', 'factories') ]
Factory.find_definitions
No comments:
Post a Comment