# EC1-327 - Cross Selling Bundle Flag > https://sinbadkp.atlassian.net/browse/EC1-327 ## API Test Scenarios #### Test Scenario 1 ```gherkin Scenario: As an Admin, I should be able to see field 'is_bundle' in SKU List Given the user has logged in to RED When the user hit get sku list product Then show field 'is_bundle' ``` #### Test Scenario 2 ```gherkin Scenario: As an Admin, I should be able to see 'true' value in 'is_bundle' field in SKU related to promo bundle Given the user has logged in to RED And SKU <A> is related to a promo bundle When the user hit get sku list product Then show SKU <A> 'is_bundle' field as 'true' ``` #### Test Scenario 3 ```gherkin Scenario: As an Admin, I should be able to see 'false' value in 'is_bundle' field in SKU not related to promo bundle Given the user has logged in to RED And SKU <A> is not related to a promo bundle When the user hit get sku list product Then show SKU <A> 'is_bundle' field as 'false' ``` ## Functional Test Scenarios #### Test Scenario 1 ```gherkin Scenario: As a User, I should be able to see promo bundle flag in SKU with promo bundle Given the user has logged in to RED And the user is on Homepage And SKU <A> is related to a promo bundle When the user search for SKU <A> Then show Product List Page based on the search And show promo bundle flag in SKU <A> ``` #### Test Scenario 2 ```gherkin Scenario: As a User, I shouldn't be able to see promo bundle flag in SKU with promo flexi Given the user has logged in to RED And the user is on Homepage And SKU <A> is related to a flexi promo When the user search for SKU <A> Then show Product List Page based on the search And show flexi promo flag in SKU <A> And doesn't show promo bundle flag in SKU <A> ``` #### Test Scenario 3 ```gherkin Scenario: As a User, I should be able to see promo bundle flags on multiple related products Given the user has logged in to RED And the user is on Homepage And SKU <A> is related to a promo bundle <A> And SKU <B> is realted to a promo bundle <A> When the user search for brand of SKU <A>, <B> Then show Product List Page based on the search And show promo bundle flag in SKU <A> And show promo bundle flag in SKU <B> ``` ###### tags: `Sprint 23` `Red` `Ecommerce 1`