RailsアプリケーションにFactoryGirlを使用して最初のコントローラーテストを作成しようとしていますが、次のエラーが発生し続けます。
uninitialized constant FactoryGirl
私のFactorys.rbファイルは次のようになります。
FactoryGirl.define do
factory :offer, class: "Offer" do |f|
f.title "Some title"
f.description "SomeDescription"
end
end
そして、私のコントローラーテストは次のようになります。
require 'spec_helper'
describe OffersController do
def valid_session
{}
end
describe "GET index" do
before {
@offer = FactoryGirl.create(:offer)
}
it "assigns all offers as @offers" do
get :index, {}, valid_session
assigns(:offers).should eq([@offer])
end
end
end
私のGemfileは次のようになります。
group :development, :test do
gem 'sqlite3'
gem 'rspec-rails'
gem 'capybara', '1.1.2'
gem 'factory_girl_rails', '>= 4.1.0', :require => false
end
FactoryGirlが存在しないため、何が欠けている可能性がありますか?