From 173c3d47e103888978811c3bcc55f4b28ccd0134 Mon Sep 17 00:00:00 2001 From: Anna-Sokolowska Date: Tue, 12 Apr 2022 12:00:35 +0200 Subject: [PATCH] #7 - add missing quotation marks and correct typos --- features/admin_panel/creating_new_admin.feature | 2 +- features/admin_panel/meetup/create.feature | 2 +- features/admin_panel/meetup/delete.feature | 2 +- features/admin_panel/meetup/show.feature | 4 ++-- features/admin_panel/organization/delete.feature | 2 +- features/admin_panel/organization/show.feature | 4 ++-- features/admin_panel/speakers/delete.feature | 2 +- features/admin_panel/speakers/show.feature | 2 +- features/authentication/register.feature | 2 +- features/meetup/show.feature | 4 ++-- 10 files changed, 13 insertions(+), 13 deletions(-) diff --git a/features/admin_panel/creating_new_admin.feature b/features/admin_panel/creating_new_admin.feature index f7c4ba0f..33dbec22 100644 --- a/features/admin_panel/creating_new_admin.feature +++ b/features/admin_panel/creating_new_admin.feature @@ -12,7 +12,7 @@ Feature: Creating a admin user Scenario Outline: Successfully created an account Given the invited user is on the authentication route by invitation link - When the invited user registers with "" email addrress + When the invited user registers with "" email address Then new administrator with email "" should be created Examples: | email | diff --git a/features/admin_panel/meetup/create.feature b/features/admin_panel/meetup/create.feature index 0ac089f0..683c8630 100644 --- a/features/admin_panel/meetup/create.feature +++ b/features/admin_panel/meetup/create.feature @@ -15,7 +15,7 @@ Feature: Creating a meetup | date | | | place | | | language | | - And the administrator should see the message "Meetup succesfully created" + And the administrator should see the message "Meetup successfully created" Examples: | title | date | place | language | | test meetup | 2023-02-02 10:10:10 | test place | pl | diff --git a/features/admin_panel/meetup/delete.feature b/features/admin_panel/meetup/delete.feature index 3b1c2f01..ae8c8774 100644 --- a/features/admin_panel/meetup/delete.feature +++ b/features/admin_panel/meetup/delete.feature @@ -7,7 +7,7 @@ Feature: Deleting a meetup And the administrator is logged in Scenario Outline: Successfully deleting a meetup - Given the administrator is on the deleting meetup page with meetup id + Given the administrator is on the deleting meetup page with meetup id equals "" When the administrator clicks on the delete meetup button Then the administrator should see the message "Meetup successfully deleted" Examples: diff --git a/features/admin_panel/meetup/show.feature b/features/admin_panel/meetup/show.feature index 2614ae57..f5f992db 100644 --- a/features/admin_panel/meetup/show.feature +++ b/features/admin_panel/meetup/show.feature @@ -7,7 +7,7 @@ Feature: Showing a meetup And the administrator is logged in Scenario Outline: Successfully showing a meetup - Given the administrator is on the showing meetup page with meetup id "" + Given the administrator is on the showing meetup page with meetup id equals "" Then the administrator should see "title" with "" And the administrator should see "date" with "<date>" And the administrator should see "place" with "<place>" @@ -17,7 +17,7 @@ Feature: Showing a meetup | 1 | example meetup | 2023-01-01 10:10:10 | example place | pl | Scenario Outline: Attempt to show a meetup which does not exist - When the administrator get to the show meetup page with id equals "<id> + When the administrator get to the show meetup page with id equals "<id>" Then the administrator should see the message "Page not found" Examples: | id | diff --git a/features/admin_panel/organization/delete.feature b/features/admin_panel/organization/delete.feature index 02688f3c..506ef4f0 100644 --- a/features/admin_panel/organization/delete.feature +++ b/features/admin_panel/organization/delete.feature @@ -7,7 +7,7 @@ Feature: Deleting an organization And the administrator is logged in Scenario Outline: Successfully deleting an organization - Given the administrator is on the deleting organization page with organization id <id> + Given the administrator is on the deleting organization page with organization id "<id>" When the administrator clicks on the delete organization button Then the administrator should see the message "Organization successfully deleted" Examples: diff --git a/features/admin_panel/organization/show.feature b/features/admin_panel/organization/show.feature index 4c186e9e..e8b7fd4f 100644 --- a/features/admin_panel/organization/show.feature +++ b/features/admin_panel/organization/show.feature @@ -7,7 +7,7 @@ Feature: Showing an organization And the administrator is logged in Scenario Outline: Successfully showing an organization - Given the administrator is on the showing organization page with organization id <id> + Given the administrator is on the showing organization page with organization id equals "<id>" Then the administrator should see "name" with "<name>" And the administrator should see "description" with "<description>" Examples: @@ -15,7 +15,7 @@ Feature: Showing an organization | 1 | example organization | existing organization | Scenario Outline: Attempt to show an organization which does not exist - When the administrator get to the show organization page with id equals "<id> + When the administrator get to the show organization page with id equals "<id>" Then the administrator should see the message "Page not found" Examples: | id | diff --git a/features/admin_panel/speakers/delete.feature b/features/admin_panel/speakers/delete.feature index 4ed3a759..870eba2b 100644 --- a/features/admin_panel/speakers/delete.feature +++ b/features/admin_panel/speakers/delete.feature @@ -7,7 +7,7 @@ Feature: Deleting a speaker And the administrator is logged in Scenario Outline: Successfully deleting a speaker - Given the administrator is on the deleting speaker page with meetup id <id> + Given the administrator is on the deleting speaker page with meetup id equals "<id>" When the administrator clicks on the delete speaker button Then the administrator should see the message "Speaker successfully deleted" Examples: diff --git a/features/admin_panel/speakers/show.feature b/features/admin_panel/speakers/show.feature index 50b77e0a..056afa2c 100644 --- a/features/admin_panel/speakers/show.feature +++ b/features/admin_panel/speakers/show.feature @@ -7,7 +7,7 @@ Feature: Showing a speaker And the administrator is logged in Scenario Outline: Successfully showing a speaker - Given the administrator is on the showing speaker page with speaker id <id> + Given the administrator is on the showing speaker page with speaker id equals "<id>" Then the administrator should see "name" with "<name>" And the administrator should see "description" with "<description>" Examples: diff --git a/features/authentication/register.feature b/features/authentication/register.feature index 9eb2cf77..8c96b3f5 100644 --- a/features/authentication/register.feature +++ b/features/authentication/register.feature @@ -10,7 +10,7 @@ Feature: User registration And the user fills in "name" with "<name>" And the user submits form Then the user has successfully sign up - And the user should get an email on <email> + And the user should get an email on "<email>" Examples: | email | password | name | | testuser@example.com | correctpassword | testuser | diff --git a/features/meetup/show.feature b/features/meetup/show.feature index ab823e4e..0cc6e838 100644 --- a/features/meetup/show.feature +++ b/features/meetup/show.feature @@ -9,7 +9,7 @@ Feature: Showing a meetup And the user is not an administrator Scenario Outline: Successfully showing a meetup - When the user is on the show meetup page with <id> + When the user is on the show meetup page with id equals "<id>" Then the user should see following meetup details: | id | <id> | | organizer_id | <organizer_id> | @@ -23,7 +23,7 @@ Feature: Showing a meetup | 2 | 2 | foreign meetup | 2023-01-01 10:10:10 | place | pl | Scenario Outline: Attempt to show a meetup which does not exist - When the user in on the show meetup page with id equals "<id> + When the user in on the show meetup page with id equals "<id>" Then the user should see the message "Page not found" Examples: | id |