1

rspecで外部キーの関連付けをテストする方法、

これがコードです

has_one :store, :foreign_key => "seller_id", :class_name => "Store"

このコードのrspecの書き方

いくつかの提案を教えてください

4

2 に答える 2

2

Model.new.build_store.class.should eql Store

于 2012-04-06T11:19:02.420 に答える
1

答えはshoulda-matchersの宝石です。これをチェックしてください:https ://github.com/thoughtbot/shoulda-matchers

describe Post do
  it { should belong_to(:user) }
  it { should have_many(:tags).through(:taggings) }
end

describe User do
  it { should have_many(:posts) }
end
于 2012-04-06T15:41:15.973 に答える