我正在使用带有rails的应用程序,我正在创建一个名为“comments”的模型,另一个名为“post”的模型.评论是多态的.
当我用这样的帖子测试与肩膀匹配者
it {should have_many(:comments)}
它得到这个消息
Expected Post to have a has_many
association called comments (Comment
does not have a post_id foreign key.)
在我的评论模型中
belongs_to :commentable,:polymorphic => true
如何测试我的多态关联,以便一个帖子可以有很多评论?
附: shoulda matcher文档表示它支持多态关联.
解决方法
你应该不需要做任何特别的测试,如果它应该工作.在您的帖子模型上,确保设置:as:
has_many :comments,:as => :commentable
这将确保rails使用适当的列名称commentable_id和commentable_type而不是post_id.