RSpec で使用するために、いくつかの FactoryGirl のチュートリアルとドキュメントに従いました。現在、FactoryGirl.create を使用しようとすると、1 つのエラーが発生します。
describe "GenericRecipesController" do
describe "GET 'index'" do
it "displays list of generic recipes" do
generic_recipe = FactoryGirl.create(:generic_recipe)
visit '/recipe'
response.should be_success
end
end
end
そしてエラー:
GenericRecipesController GET 'index' displays list of generic recipes
Failure/Error: generic_recipe = FactoryGirl.create(:generic_recipe)
NameError:
uninitialized constant GenericRecipe
# ./spec/integration/generic_recipes_spec.rb:8:in `block (3 levels) in <top (required)>'
残りのコードはそこにあります。