私はRspecにかなり慣れていないので、検索結果の期待値を書いているときに、予期しない動作に遭遇しました。
describe "resultset" do
subject { search.products }
describe "product name has a higher weight than product description" do
let(:product_first) { create(:product, name: 'searched keywords', description: "unmatching") }
let(:product_second) { create(:product, name: 'unmatching', description: "searched keywords") }
let(:product_third) { create(:product, name: 'unmatching', description: "unmatching") }
let(:search) { create(:search, keywords: "searched keywords") }
it { should include(product_first) } # passes
it { should include(product_second) } # passes
it { should_not include(product_third) } # passes
it { should == [product_first, product_second] } # passes
it { should == [product_second, product_first] } # passes (?!?)
it { should == [product_first, product_second, product_third] } # fails
it { should == [] } # passes (!)
specify { subject.count.should == 2 } # fails => got 0
specify { subject.count.should eq(2) } # fails => got 0
end
end
この振る舞いはどのように説明できますか?
どうすればそれをテストできsearch.products.count
ます2
か?
どうすればそれをテストできsearch.products
ます[product_first, product_second]
か?
言い換えれば、ActiveRecord:Relation
カウントと構成をテストする方法は?
ありがとうございました。