gpt4 book ai didi

ruby-on-rails - Rspec2测试before_validation方法

转载 作者:行者123 更新时间:2023-12-04 05:14:33 25 4
gpt4 key购买 nike

我有以下删除特定属性上的空格的方法。

#before_validation :strip_whitespace

protected
def strip_whitespace
self.title = self.title.strip
end

我想测试一下。目前,我已经尝试过:
it "shouldn't create a new part with title beggining with space" do
@part = Part.new(@attr.merge(:title => " Test"))
@part.title.should.eql?("Test")
end

我想念什么?

最佳答案

直到对象被保存或您手动调用valid?时,验证才会运行。当前示例中未运行before_validation回调,因为从不检查您的验证。在您的测试中,我建议您先运行@part.valid?,然后再检查标题是否已更改为您期望的名称。

app/models/part.rb

class Part < ActiveRecord::Base
before_validation :strip_whitespace

protected
def strip_whitespace
self.title = self.title.strip
end
end

规范/型号/part_spec.rb
require 'spec_helper'

describe Part do
it "should remove extra space when validated" do
part = Part.new(:title => " Test")
part.valid?
part.title.should == "Test"
end
end

当包含验证时,此方法将通过,而当注释被取消时,此方法将失败。

关于ruby-on-rails - Rspec2测试before_validation方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7361036/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com