0

我有这个规范方法,我想使用地址参数来更改 @profile.website 属性

def should_validate_length_of(adress)
  @profile.adress = "x" * 393 
  @profile.save
end

should_validate_length_of('website')

但是我遇到这个undefined method地址='`

解决方案应该很简单,但我不知道。

4

1 回答 1

0

试试这个:

def should_validate_length_of(adress)
  @profile.update_attributes(address => ("x" * 393)) 
end

should_validate_length_of('website')
于 2013-05-10T15:56:25.860 回答