require 'test_helper'

class ProductsControllerTest < ActionDispatch::IntegrationTest
  setup do
  end

  test "should get index" do
    get products_url
    assert_response :success
  end

  test "should show product" do
    get product_url(id: "p1")
    assert_response :success
  end


end
