2019-03-24 09:59:47 -04:00
|
|
|
|
Feature: Account
|
2019-03-24 14:01:59 -04:00
|
|
|
|
Scenario: of a user
|
|
|
|
|
Given there is a usual account with the following data:
|
|
|
|
|
| username | kotovalexarian |
|
|
|
|
|
| public_name | Alex Kotov |
|
|
|
|
|
| biography | Hi there :) |
|
|
|
|
|
When I visit "/accounts/kotovalexarian"
|
|
|
|
|
Then I see text "kotovalexarian"
|
|
|
|
|
And I see text "Alex Kotov"
|
|
|
|
|
And I see text "Hi there :)"
|
2019-03-24 15:04:39 -04:00
|
|
|
|
And I see text "Не относится к партии"
|
2019-03-24 14:01:59 -04:00
|
|
|
|
|
2019-03-24 14:12:17 -04:00
|
|
|
|
Scenario: of a supporter
|
|
|
|
|
Given there is a supporter 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 :)"
|
2019-03-24 15:04:39 -04:00
|
|
|
|
And I see text "Сторонник партии"
|
2019-03-24 14:12:17 -04:00
|
|
|
|
|
2019-03-24 13:59:37 -04:00
|
|
|
|
Scenario: of a member
|
|
|
|
|
Given there is a member account with the following data:
|
2019-03-24 09:59:47 -04:00
|
|
|
|
| username | kotovalexarian |
|
|
|
|
|
| public_name | Alex Kotov |
|
|
|
|
|
| biography | Hi there :) |
|
2019-03-24 13:59:37 -04:00
|
|
|
|
| country_state | Москва |
|
2019-03-24 09:59:47 -04:00
|
|
|
|
When I visit "/accounts/kotovalexarian"
|
|
|
|
|
Then I see text "kotovalexarian"
|
|
|
|
|
And I see text "Alex Kotov"
|
|
|
|
|
And I see text "Hi there :)"
|
2019-03-24 15:04:39 -04:00
|
|
|
|
And I see text "Член партии"
|
2019-03-24 14:47:55 -04:00
|
|
|
|
|
|
|
|
|
Scenario: of an excluded member
|
|
|
|
|
Given there is an excluded 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 :)"
|
2019-03-24 15:04:39 -04:00
|
|
|
|
And I see text "Исключён из партии"
|