Then(/^404 error should be obtained from \/DELETE track assets endpoint$/) do
  assert_equal(404, @res[:code])
  assert_equal("Product not found", parsed_response["message"])
  assert_equal("not_found_error", parsed_response["code"])
end

When(
  /^the user tries to \/DELETE track assets for a (valid|non-existent) product$/
) do |switch_case|
  case switch_case
  when "valid"
    @res = delete_track_assets(PRODUCT_A_TUID)
    # TODO
    # assert response is valid, 200 and so on
  when "non-existent"
    @res = delete_track_assets(123_123_123)
  end
end
