我正在关注 ruby.railstutorial.org。我遇到了一些麻烦,但我解决了它们。然而,现在我在谷歌上搜索了很长一段时间,检查了代码,我什至知道为什么测试失败了,但不知道如何让它通过。
所以,这就是问题所在。我有一个用户模型:
class User < ActiveRecord::Base
attr_accessible :email, :name
validates :name, presence: true, length: {maximum: 50 }
VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i
validates :email, presence: true, format: { with: VALID_EMAIL_REGEX },
uniqueness: { case_sensitive: false }
end
该问题与不区分大小写的唯一性检查有关。Rspec中的测试是:
before { @user = User.new(name: "Example User", email: "user@example.com") }
subject { @user }
describe "when email address is already in use" do
before do
user_with_same_email = @user.dup
user_with_same_email = @user.email.upcase
user_with_same_email.save
end
it { should_not be_valid }
end
测试错误信息如下:
Failures:
1) User when email address is already in use
Failure/Error: user_with_same_email.save
NoMethodError:
undefined method `save' for "USER@EXAMPLE.COM":String
# ./spec/models/user_spec.rb:53:in `block (3 levels) in <top (required)>'
所以模型甚至无法保存。我不知道该怎么做。但是,如果我们从测试中注释掉以下行:
user_with_same_email = @user.email.upcase
并从模型代码中删除{ case_sensitive: false }部分,测试通过。我想要测试做的是实际保存user_with_same_email变量,然后报告它无效。非常感谢任何帮助/链接/建议。