Active Record保存方法throws无法访问RSpec :: Matchers错误

时间:2011-07-19 08:21:43

标签: ruby activerecord rspec matcher

我有使用ruby和活动记录的这段代码

customer_email = Email.first(:conditions => {:Email_Address => email_address})
  customer_email.Is_Verified = 1
  customer_email.save!

在线:customer_email.save!,我收到如下错误:

无法访问RSpec :: Matchers :: Matcher(TypeError)

我不明白为什么我会收到此错误。我认为它与电子邮件表中的列Is_Verified有关。我无法重命名这个专栏,所以我很感激任何解决方法。

1 个答案:

答案 0 :(得分:0)

如果您在保存之前puts customer_email.inspect会怎样?