与测试::单位的间隙

发布于 2024-09-04 22:36:31 字数 310 浏览 8 评论 0原文

我正在使用 Clearance 与我的 Rails 应用程序进行身份验证,该应用程序有效。但现在我所有的单元测试都失败了,因为它们重定向到登录页面,这是有道理的。 Clearance 似乎有帮助函数来解决这个问题,但我只能找到它们 Shoulda。 Test::Unit 是否有等效的帮助程序?

I am using Clearance for authentication with my rails app which works. But now all my unit tests fail because they redirect to the sign in page, which makes sense. Clearance seems to have helper functions for fixing that but I can only find them for Shoulda. Are there equivalent helpers for Test::Unit?

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

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

发布评论

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

评论(1

生生漫 2024-09-11 22:36:31

我认为 shoulda 宏的工作方式会有更多“魔力”,但实际上非常简单。要添加sign_in行为,只需将其添加到test_helper.rb中

  def sign_in_as(user)
    @controller.current_user = user
    return user
  end

I thought there'd be more 'magic' to how the shoulda macros work but it's actually really simple. To add the sign_in behavior just add this to the test_helper.rb

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