As a Supplier Manager
I need a RESTful supplier catalog service
So that I can keep track of all my suppliers and their products
Assumptions:
UI for the application exist
BDD .feature file and accompanying steps.py files to test RESTful API from the outside in
Acceptance Criteria:
Scenario: Mark a supplier as Preferred
Given the following
| id | name | category | preferred |
| 1 | John | home & furnishing | True |
| 2 | Jane | apparel | False |
| 3 | Jack | apparel | False |
When I visit the "Home Page"
And I press the "Suppliers" button
And I select a supplier
Then I should be able to mark the supplier as Preferred
As a Supplier Manager I need a RESTful supplier catalog service So that I can keep track of all my suppliers and their products
Assumptions:
UI for the application exist BDD .feature file and accompanying steps.py files to test RESTful API from the outside in
Acceptance Criteria: Scenario: Mark a supplier as Preferred Given the following | id | name | category | preferred | | 1 | John | home & furnishing | True | | 2 | Jane | apparel | False | | 3 | Jack | apparel | False |
When I visit the "Home Page" And I press the "Suppliers" button And I select a supplier Then I should be able to mark the supplier as Preferred