Show Products
Learn how to add the standard HTTP method GET for the Product model in the API.
We'll cover the following...
We will begin by adding some product show controller specs. The strategy here is clear. We need to create a single product and ensure the server’s response is what we expect.
Add test
We will implement the functional test to verify that the products#show
method functions as required. We will do this by adding our code to ...