Rails指南说,“Fixtures也可以将自己转换为原始类的形式。因此,你可以获得仅适用于该类的方法,”并举例说明,
# using the find method, we grab the "real" david as a User
david = users(:david).find
我的灯具工作正常,但是当我尝试
时 memb = members(:one).find
我收到错误:NoMethodError:未定义的方法`find'。我做错了什么?
(Rails指南参考:http://edgeguides.rubyonrails.org/testing.html#the-low-down-on-fixtures)
答案 0 :(得分:2)
该指南现已修复,因此不再需要查找,因为现在users(:david)
是ActiveRecord对象。