我的用户模型需要一个至少包含一个大写字母的密码。我的规范如下:
subject { User.new }
it { should_not allow_value("test123$").for(:password).with_message("password requires an uppercase letter (\"test123$\")") }
但是,此规范会返回以下失败:
Expected errors to include ["password requires an uppercase letter (\"test123$\")"] when password is set to "test123$", got errors: ["password requires an uppercase letter (\"test123$\")"]
在我看来,错误数组清楚地包含正确的消息。我在这里做错了什么?
编辑: 这是我正在尝试规范的验证:
[
[/[A-Z]/, "requires an uppercase letter"],
[/[a-z]/, "requires a lowercase letter"],
[/[0-9]/, "requires a number"],
[/[^\w]/, "requires a special character"]
].each do |(format, message)|
validates :password, :format => {:with => format,
:message => message},
:allow_blank => true
end
答案 0 :(得分:0)
我只能断定您执行的代码与您显示的代码不同。您的RSpec失败消息表明您希望errors数组包含一个包含相关字符串的数组,而不是期望它包含字符串本身。可能是因为运行包含....with_message(["..."])
的规范而不是您显示的内容而产生此错误消息?
相关的shoulda代码非常简单。见https://github.com/thoughtbot/shoulda-matchers/blob/d680e7d47ba0d0bc6eba888cc4648f65b61ac2cf/lib/shoulda/matchers/active_model/allow_value_matcher.rb
的第120行