Rails 7.1 Authentication From Scratch - Test Helpers
For controller & integration tests, you'll make a POST request to log the user in: ```ruby class ActiveSupport::TestCase def login(user, password: "password") post login_path, params: { ...
Chris Oliver replied