Given the URL helper product_path(@product), which statement would be expected to be false?
product_path(@product)
If sent using the GET HTTP method, the URL would execute the show action in ProductsController.
If sent using the POST HTTP method, the URL would create a new product in the database.
If sent using the PATCH HTTP method, the URL could be used to update a product in the database.
If sent using the DELETE HTTP method, the URL would call the destroy action by default.