2019-03-24 18:59:47 +05:00
|
|
|
|
Feature: Account
|
2019-03-24 23:01:59 +05:00
|
|
|
|
Scenario: of a user
|
|
|
|
|
Given there is a usual account with the following data:
|
2019-03-25 00:27:06 +05:00
|
|
|
|
| nickname | kotovalexarian |
|
2019-03-24 23:01:59 +05:00
|
|
|
|
| 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-06-05 09:36:05 +05:00
|
|
|
|
# And I see text "Не относится к партии"
|
2019-03-24 23:01:59 +05:00
|
|
|
|
|
2019-03-24 23:12:17 +05:00
|
|
|
|
Scenario: of a supporter
|
|
|
|
|
Given there is a supporter account with the following data:
|
2019-06-23 20:59:44 +05:00
|
|
|
|
| nickname | kotovalexarian |
|
|
|
|
|
| public_name | Alex Kotov |
|
|
|
|
|
| biography | Hi there :) |
|
|
|
|
|
| federal_subject | Москва |
|
2019-03-24 23:12:17 +05:00
|
|
|
|
When I visit "/accounts/kotovalexarian"
|
|
|
|
|
Then I see text "kotovalexarian"
|
|
|
|
|
And I see text "Alex Kotov"
|
|
|
|
|
And I see text "Hi there :)"
|
2019-06-05 09:36:05 +05:00
|
|
|
|
# And I see text "Сторонник партии"
|
2019-03-25 00:09:57 +05:00
|
|
|
|
And I see text "Москва"
|
2019-03-24 23:12:17 +05:00
|
|
|
|
|
2019-03-24 22:59:37 +05:00
|
|
|
|
Scenario: of a member
|
|
|
|
|
Given there is a member account with the following data:
|
2019-06-23 20:59:44 +05:00
|
|
|
|
| nickname | kotovalexarian |
|
|
|
|
|
| public_name | Alex Kotov |
|
|
|
|
|
| biography | Hi there :) |
|
|
|
|
|
| federal_subject | Москва |
|
2019-03-24 18:59:47 +05:00
|
|
|
|
When I visit "/accounts/kotovalexarian"
|
|
|
|
|
Then I see text "kotovalexarian"
|
|
|
|
|
And I see text "Alex Kotov"
|
|
|
|
|
And I see text "Hi there :)"
|
2019-06-05 09:36:05 +05:00
|
|
|
|
# And I see text "Член партии"
|
2019-03-25 00:09:57 +05:00
|
|
|
|
And I see text "Москва"
|
2019-03-24 23:47:55 +05:00
|
|
|
|
|
|
|
|
|
Scenario: of an excluded member
|
|
|
|
|
Given there is an excluded member account with the following data:
|
2019-06-23 20:59:44 +05:00
|
|
|
|
| nickname | kotovalexarian |
|
|
|
|
|
| public_name | Alex Kotov |
|
|
|
|
|
| biography | Hi there :) |
|
|
|
|
|
| federal_subject | Москва |
|
2019-03-24 23:47:55 +05:00
|
|
|
|
When I visit "/accounts/kotovalexarian"
|
|
|
|
|
Then I see text "kotovalexarian"
|
|
|
|
|
And I see text "Alex Kotov"
|
|
|
|
|
And I see text "Hi there :)"
|
2019-06-05 09:36:05 +05:00
|
|
|
|
# And I see text "Исключён из партии"
|
2019-03-25 00:09:57 +05:00
|
|
|
|
And I see text "Москва"
|