Feature: asset management delete image assets

  @wip
  Scenario: image assets can be deleted successfully
    Given the client has uploaded a valid jpg file to s3
    When the user /POST valid JPG asset
    Then the /POST asset response contains a 200 code
    And /GET asset response is [finished]
    And GET /asset/product/<product_id> contains a previously uploaded asset
    When the user tries to /DELETE image assets for a valid product
    Then GET /asset/product/<product_id> doesn't contain a previously uploaded asset

  @wip
  Scenario: 404 error should be obtained if an unexisting product_id was provided for /delete image asset
    When the user tries to /DELETE image assets for a non-existent product
    Then 404 error should be obtained from /DELETE image assets endpoint
