我有这个spec方法,我想使用地址参数来更改@ profile.website属性
def should_validate_length_of(adress)
@profile.adress = "x" * 393
@profile.save
end
should_validate_length_of('website')
但我遇到了这个undefined method
地址='`
解决方案应该很简单,但我不知道。
答案 0 :(得分:0)
请改为尝试:
def should_validate_length_of(adress)
@profile.update_attributes(address => ("x" * 393))
end
should_validate_length_of('website')