How to check if all pages completed successfully

Is there a quick way to check if all my Rails routes are successful? Even for registered pages?

+3


source to share


1 answer


Use rspec to test your controllers



You can use ActionController :: Routing :: Routes.routes to get your routes, use a block each

and use get

for each route. you need to pass some params

in some routes.

+2


source







All Articles