Cucumber+Design 路由错误

发布于 2024-09-26 07:59:18 字数 192 浏览 1 评论 0原文

在 Cucumber 上注册测试设备时遇到问题。点击“注册”后 它显示 未初始化常量 User::ArticlesController (ActionController::RoutingError) 我想这是因为注册后,设计将登录的用户重定向到文章页面,但它不在命名空间用户下。因为我测试用户,所以它把所有内容都放在这个命名空间下。

having trouble with testing devise sign up on Cucumber. After "Sign Up" click
it shows
uninitialized constant User::ArticlesController (ActionController::RoutingError)
I suppose that's because right after Sign up, devise redirects logged user to Articles page and but it's not under namespace User. Because I test user it put everything under this namespace.

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

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

发布评论

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

评论(1

甜尕妞 2024-10-03 07:59:18

这个Devise howto 说你可以通过命名 user_route 路径来路由到不在 User 命名空间下的东西:

match 'my/dashboard' => 'my/dashboard#index', :as => 'user_root'

所以听起来你可以这样做:

match 'articles' => 'articles#index', :as => 'user_root'

This Devise howto says you can route to something not under the User namespace by naming a user_route path:

match 'my/dashboard' => 'my/dashboard#index', :as => 'user_root'

So it sounds like you can do something like:

match 'articles' => 'articles#index', :as => 'user_root'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文