-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUS02.feature
More file actions
25 lines (20 loc) · 829 Bytes
/
US02.feature
File metadata and controls
25 lines (20 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Feature: Account Creation Confirmation
As a user
I want to receive a confirmation of my account creation via the email I provided
So that I can confirm the creation of my account
Scenario: Confirmation Email Sent
Given the user has created an account,
When the user wants to confirm that their account has been created,
Then a confirmation email is sent to the provided email address.
Examples:
| email |
| newuser@example.com |
| testuser@example.com|
Scenario: Error in Sending Confirmation Email
Given the user has created an account,
When the user wants to confirm if their account has been created,
Then no confirmation email is received.
Examples:
| email |
| invalid@example.com |
| noreply@example.com |