题
如何获取我的管理命名空间中所有路由的列表,以便我可以在我的一个测试中使用它?
合理
在我的管理命名空间中创建新的控制器时,我经常会错误地从ApplicationController继承而不是AdminController.所以,我想写一个测试,访问我的管理命名空间中的所有路由,并验证每个路由需要登录的用户.
解决方法
test_routes = [] Rails.application.routes.routes.each do |route| route = route.path.spec.to_s test_routes << route if route.starts_with?('/admin') end