RSpecおよび工場ガールの新機能、このバトルを失う!RSpc 2.9.0 + FactoryGirlを使用した検証has_manyスルー3.2
私は、そのテーブルのプロパティの1つに妥当性チェックを持つMealItemsという結合テーブルを持っています。レールコンソールで、私が正常に行うことができ、次の
meal = Meal.create!(...)
food = Food.create!(...)
item1 = MealItem.create!(meal, food, 1234) # 1234 being the property that is required
私はその後、自動的に次のようにMealItemによって与えられた食事に食品の配列を取得することができます
meal.foods
問題があることを私がすることはできませんこの関係が仕様で利用できるように、工場を適切に作成する方法を理解してください。私は食事にアイテムを割り当て、それらをテストしますが、(meal.foods)を作業関係を通じてhas_manyのを取得することはできません
モデル
class Meal < ActiveRecord::Base
has_many :meal_items
has_many :foods, :through => :meal_items
end
class MealItem < ActiveRecord::Base
belongs_to :meal
belongs_to :food
validates_numericality_of :serving_size, :presence => true,
:greater_than => 0
end
class Food < ActiveRecord::Base
has_many :meal_items
has_many :meals, :through => :meal_items
end
スペック/ factories.rb
することができますFactoryGirl.define do
factory :lunch, class: Meal do
name "Lunch"
eaten_at Time.now
end
factory :chicken, class: Food do
name "Western Family Bonless Chicken Breast"
serving_size 100
calories 100
fat 2.5
carbohydrates 0
protein 19
end
factory :cheese, class: Food do
name "Armstrong Light Cheddar"
serving_size 30
calories 90
fat 6
carbohydrates 0
protein 8
end
factory :bread, class: Food do
name "'The Big 16' Multigrain Bread"
serving_size 38
calories 100
fat 1
carbohydrates 17
protein 6
end
factory :item1, class: MealItem do
serving_size 100
association :meal, factory: :lunch
association :food, factory: :chicken
end
factory :item2, class: MealItem do
serving_size 15
association :meal, factory: :lunch
association :food, factory: :cheese
end
factory :item3, class: MealItem do
serving_size 76
association :food, factory: :bread
association :meal, factory: :lunch
end
factory :meal_with_foods, :parent => :lunch do |lunch|
lunch.meal_items { |food| [ food.association(:item1),
food.association(:item2),
food.association(:item3)
]}
end
end
仕様/モデル/ meal_spec.rb
...
describe "Nutritional Information" do
before(:each) do
#@lunch = FactoryGirl.create(:meal_with_foods)
@item1 = FactoryGirl.create(:item1)
@item2 = FactoryGirl.create(:item2)
@item3 = FactoryGirl.create(:item3)
@meal = FactoryGirl.create(:lunch)
@meal.meal_items << @item1
@meal.meal_items << @item2
@meal.meal_items << @item3
@total_cals = BigDecimal('345')
@total_fat = BigDecimal('7.5')
@total_carbs = BigDecimal('34')
@total_protein = BigDecimal('35')
end
# Would really like to have
#it "should have the right foods through meal_items" do
#@meal.foods[0].should == @item1.food
#end
it "should have the right foods through meal_items" do
@meal.meal_items[0].food.should == @item1.food
end
it "should have the right amount of calories" do
@meal.calories.should == @total_cals
end
...
私の質問は:
私が原因で結合テーブル上の検証要件の食事に直接食品を割り当てることはできませんとしてどのようにセットアップこれらの工場は、私は私のテストでMeal.foodsを参照することができます。テスト中にMealItemファクトリをDBに正しく書いていないのですから、has_many through関係が私の仕様に存在しないのはなぜですか?
ご迷惑をおかけして申し訳ありません。