RSpec 错误检查的更改

发布于 2024-12-19 08:55:59 字数 324 浏览 0 评论 0原文

我正在尝试使用 RSpec 来遵循 TDD 教程,其中包含以下行:

it 'must have a first_name' do
  p = Person.new
  p.should_not be_valid
  p.errors.on(:first_name).should_not be_nil
end

但是,我在测试中收到以下消息:

#ActiveModel::Errors:0x007fde0c3eceb0 的未定义方法“on”>

上面的代码正确的写法是什么?

I am trying to follow a tutorial on TDD with RSpec that contains the following line:

it 'must have a first_name' do
  p = Person.new
  p.should_not be_valid
  p.errors.on(:first_name).should_not be_nil
end

However I receive the following message in my test:

undefined method `on' for #ActiveModel::Errors:0x007fde0c3eceb0>

What is the correct way to write the code above.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你另情深 2024-12-26 08:55:59

正确的函数是errors_on。所以该行应该是

p.errors_on(:first_name).should_not be_nil

The correct function is errors_on. So that line should be

p.errors_on(:first_name).should_not be_nil
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文