Add a controller test for the new action
Task
  - Add a controller test to check that the LimericksController#newmethod functions correctly for the happy path.
Steps
  - Add Test:
    
      - Controller test file: test/controllers/limericks_controller_test.rb
- Test name: "should get new"
 
- Arrange:
    
      - Retrieve Userfixture objectone.
- Sign in the user.
 
- Act:
    
      - Simulate an HTTP GET request.
- URL helper for HTTP request: new_limerick_url
 
- Assert:
    
      - Use assert_responseto check that the response has a success status code (e.g.,200 OK).
- Use assert_selectto check that the rendered page has anh1HTML element with the text “New Limerick”.
 
Reference Code and Commands
   
  - Terminal command to run tests: