diff --git a/examples/features/database/sql.feature b/examples/features/database/sql.feature index 2d80eae..f9da291 100644 --- a/examples/features/database/sql.feature +++ b/examples/features/database/sql.feature @@ -17,6 +17,17 @@ Feature: database features example | 1 | us | cembri | | 2 | id | cembre | + Scenario: Test UUID value in postgres + Given set "tomato-psql" table "tblCustomers" list of content + | name | country | + | a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11 | id | + Then "tomato-psql" table "tblCustomers" should look like + | customer_id | country | + | 1 | id | + Then "tomato-psql" table "tblCustomers" should look like + | customer_id | country | name | + | 1 | id | a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11 | + Scenario: Table should always empty on each starting scenario Given "tomato-psql" table "tblCustomers" should look like | customer_id | name |