From fa5a321a867a4ef2dfc3836d18dc29281b461d87 Mon Sep 17 00:00:00 2001 From: y72wvh Date: Wed, 7 Aug 2024 15:29:21 +0200 Subject: [PATCH] fix: remove cucumber test --- .../integration/query/search_contact.feature | 41 ------------------- 1 file changed, 41 deletions(-) delete mode 100644 src/test/resources/integration/query/search_contact.feature diff --git a/src/test/resources/integration/query/search_contact.feature b/src/test/resources/integration/query/search_contact.feature deleted file mode 100644 index 9c59f5c5..00000000 --- a/src/test/resources/integration/query/search_contact.feature +++ /dev/null @@ -1,41 +0,0 @@ -Feature: search for a contact - - I am searching for a specific contact - - Background: Contact - - | Nom | Prénom | Idep | Adresse mél | - |--------|--------|--------|--------------------| - | Doe | John | JD2024 | john.doe@gmail.com | - | Durant | Doeris | DD1234 | dd1995@orange.fr | - | DOEDOE | johnny | ABCD12 | jojodu94@yahoo.fr | - | | | DOE203 | | - | BOOP | Betty | COCO54 | betty.boop@free.fr | - - Scenario: search for John Doe - Given I am a survey manager who's searching for "John Doe" - When i type "Joh" in the name and surname searching area - Then i found "Johnny" - And i found "John" - - Scenario: search for a contact who has a name or surname beginning by Doe - Given I am a survey manager who's searching for "Doe" - When i type "Doe" in the name and surname searching area - Then i found "Johnny" - And i found "John" - And i found "Doeris" - - Scenario: search for a contact who does not exist - Given I am a survey manager who's searching for "Camille" - When i type "Cam" in the name and surname searching area - Then i found nothing - - Scenario: search for betty boop - Given I am a survey manager who's searching for "Betty Boop" - When i type "bet" in the email searching area - Then i found "betty.boop@free.fr" - - Scenario: search for John Doe by his "idep" - Given I am a survey manager who's searching for "John Doe" - When i type "JD2" in the idep searching area - Then i found "JD2024"