0

我的User模型经过以下验证,并且正在使用 Shoulda Matchers Gem(这是该方法的确切页面):

validates_inclusion_of :birthday, 
  :in => Date.new(1850)..Time.now.years_ago(13).to_date, 
  :message => 'Sorry, you must be at least 13 years old to join.'

我正在使用 FactoryGirl 和 Rspec。我对我的User模型进行了这个测试:

describe "valid user age" do
  it { should ensure_inclusion_of(:birthday).in_range(13..150) }
end 

FactoryGirl.define do

  factory :user do
    sequence(:first_name) { |n| "Bob#{n}" }
    sequence(:last_name) { |n| "User#{n}" }
    email { "#{first_name}@example.com" }
    birthday { Date.today - 13.years }
    password "foobarbob"
  end
end

现在从所有这些中我得到了错误:

User valid user age 
     Failure/Error: it { should ensure_inclusion_of(:birthday).in_range(13..150) }
     Did not expect errors to include "is not included in the list" when birthday is set to 12, got error: 

为什么在浏览器中测试时会出现这种情况?

4

1 回答 1

1

除了值的范围之外,应该匹配器还会检查错误消息。如果您查看您发布的链接中的实现,您会看到低消息和高消息都默认为 :inclusion(用于查找标准 rails 错误消息的国际化版本的符号)。

允许值匹配器中的错误消息检查允许将预期消息指定为符号、正则表达式或字符串。

您在验证中使用的范围也与您在测试中使用的范围不同(日期范围与整数范围)。如果您将其更改为,我相信您的测试将通过:

it { should ensure_inclusion_of(:birthday).in_range(Date.new(1850)..Time.now.years_ago(13).to_date).with_message(/must be at least 13/) }
于 2013-06-22T20:30:21.730 回答