11 lines
418 B
Gherkin
11 lines
418 B
Gherkin
Feature: Account
|
||
Scenario: of a member
|
||
Given there is a member account with the following data:
|
||
| username | kotovalexarian |
|
||
| public_name | Alex Kotov |
|
||
| biography | Hi there :) |
|
||
| country_state | Москва |
|
||
When I visit "/accounts/kotovalexarian"
|
||
Then I see text "kotovalexarian"
|
||
And I see text "Alex Kotov"
|
||
And I see text "Hi there :)"
|