我有这个规范方法,我想使用地址参数来更改 @profile.website 属性
def should_validate_length_of(adress)
@profile.adress = "x" * 393
@profile.save
end
should_validate_length_of('website')
但是我遇到这个undefined method
地址='`
解决方案应该很简单,但我不知道。
我有这个规范方法,我想使用地址参数来更改 @profile.website 属性
def should_validate_length_of(adress)
@profile.adress = "x" * 393
@profile.save
end
should_validate_length_of('website')
但是我遇到这个undefined method
地址='`
解决方案应该很简单,但我不知道。