基本的な関連付けの設定 (Customer は Person モデルの拡張であることに注意してください):
Customer has_many :orders
Order belongs_to :customer
Customer.rb 内には、次のクラス メソッドがあります。
# SCOPE
def self.ordered_in_90_days
joins(:orders).where('orders.created_at > ?', 90.days.ago)
end
私のテストでは、次のコードで新しい Order を作成し (FactoryGirl に対する顧客感謝を自動的に作成します)、次に上記で定義した Customer モデルの self メソッドを使用します。
it "finds customers who have ordered within the last 90 days" do
@order = FactoryGirl.create(:order, created_at: 50.days.ago)
@customer = @order.customer
Customer.count.should == 1 #passes
Order.count.should == 1 #passes
puts Customer.all.to_yaml #for debugging, see below
puts Order.all.to_yaml #for debugging, see below
Customer.ordered_in_90_days.should == [@customer] #fails! returns: []
end
顧客と注文の両方が作成されていますが、メソッド呼び出しで何も返されていません (空の配列)。私は何が欠けていますか?
工場に関する追加情報を次に示します。
FactoryGirl.define do
factory :customer do
first_name "Wes"
last_name "Foster"
type "Customer"
end
factory :order do
customer
end
end
Customer と Order のデバッグ出力は次のとおりです (Customer は Person の拡張であるため、customer_id ではなく person_id が表示されることに注意してください)。
---
- !ruby/object:Customer
attributes:
id: 1
first_name: Wes
last_name: Foster
type: Customer
created_at: 2013-09-16 21:54:26.162851000 Z
updated_at: 2013-09-16 21:54:26.162851000 Z
middle_name:
---
- !ruby/object:Order
attributes:
id: 1
person_id:
created_at: 2013-07-28 21:54:26.135748000 Z
updated_at: 2013-09-16 21:54:26.192877000 Z
(お客様