I\'m quite new to rails, and trying to follow the railstutorial. Everything goes fine, except for my tests which can\'t get past the named routes (5.3.3)
My routes.r
Named routes should work if you put the following in rspec_helper.rb:
RSpec.configure do |config| config.include Rails.application.routes.url_helpers ... end
Is that how you set it up?