Skip to content
This repository has been archived by the owner on Feb 1, 2023. It is now read-only.

Commit

Permalink
#7 - add missing quotation marks and correct typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Anna-Sokolowska committed Apr 12, 2022
1 parent 10cb277 commit 173c3d4
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion features/admin_panel/creating_new_admin.feature
Original file line number Diff line number Diff line change
Expand Up @@ -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>" email addrress
When the invited user registers with "<email>" email address
Then new administrator with email "<email>" should be created
Examples:
| email |
Expand Down
2 changes: 1 addition & 1 deletion features/admin_panel/meetup/create.feature
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Feature: Creating a meetup
| date | <date> |
| place | <place> |
| language | <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 |
Expand Down
2 changes: 1 addition & 1 deletion features/admin_panel/meetup/delete.feature
Original file line number Diff line number Diff line change
Expand Up @@ -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 <id>
Given the administrator is on the deleting meetup page with meetup id equals "<id>"
When the administrator clicks on the delete meetup button
Then the administrator should see the message "Meetup successfully deleted"
Examples:
Expand Down
4 changes: 2 additions & 2 deletions features/admin_panel/meetup/show.feature
Original file line number Diff line number Diff line change
Expand Up @@ -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 "<id>"
Given the administrator is on the showing meetup page with meetup id equals "<id>"
Then the administrator should see "title" with "<title>"
And the administrator should see "date" with "<date>"
And the administrator should see "place" with "<place>"
Expand All @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion features/admin_panel/organization/delete.feature
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions features/admin_panel/organization/show.feature
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ 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:
| id | name | description |
| 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 |
Expand Down
2 changes: 1 addition & 1 deletion features/admin_panel/speakers/delete.feature
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion features/admin_panel/speakers/show.feature
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion features/authentication/register.feature
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
4 changes: 2 additions & 2 deletions features/meetup/show.feature
Original file line number Diff line number Diff line change
Expand Up @@ -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> |
Expand All @@ -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 |
Expand Down

0 comments on commit 173c3d4

Please sign in to comment.