2018-11-30 02:33:37 -05:00
|
|
|
Feature: Main page
|
2018-12-13 00:46:20 -05:00
|
|
|
Scenario: as a visitor
|
|
|
|
When I visit the main page
|
|
|
|
Then I see the main page
|
|
|
|
And I see the join button
|
2018-12-13 01:23:12 -05:00
|
|
|
And I do not see the membership application button
|
|
|
|
|
|
|
|
When I click the join button
|
|
|
|
Then I see membership application creation form
|
2018-11-30 19:45:51 -05:00
|
|
|
|
2018-12-13 00:46:20 -05:00
|
|
|
Scenario: as a guest account
|
|
|
|
Given I am signed in as guest
|
|
|
|
When I visit the main page
|
|
|
|
Then I see the main page
|
|
|
|
And I see the join button
|
2018-12-13 01:23:12 -05:00
|
|
|
And I do not see the membership application button
|
|
|
|
|
|
|
|
When I click the join button
|
|
|
|
Then I see membership application creation form
|
2018-12-13 00:46:20 -05:00
|
|
|
|
|
|
|
Scenario: as a usual account
|
|
|
|
Given I am signed in with email "user@example.com"
|
|
|
|
When I visit the main page
|
|
|
|
Then I see the main page
|
|
|
|
And I see the join button
|
2018-12-13 01:23:12 -05:00
|
|
|
And I do not see the membership application button
|
|
|
|
|
|
|
|
When I click the join button
|
|
|
|
Then I see membership application creation form
|
|
|
|
|
|
|
|
Scenario: when already sent a membership application as a visitor
|
|
|
|
When I send a membership application
|
2018-12-13 19:45:31 -05:00
|
|
|
Then I see the membership application tracking page
|
|
|
|
|
|
|
|
When I visit the main page
|
2018-12-13 01:23:12 -05:00
|
|
|
Then I see the main page
|
|
|
|
And I do not see the join button
|
|
|
|
And I see the membership application button
|
|
|
|
|
|
|
|
When I click the membership application button
|
|
|
|
Then I see the membership application tracking page
|
|
|
|
|
|
|
|
Scenario: when already sent a membership application as a usual account
|
|
|
|
Given I am signed in with email "user@example.com"
|
|
|
|
When I send a membership application
|
2018-12-13 19:45:31 -05:00
|
|
|
Then I see the membership application tracking page
|
|
|
|
|
|
|
|
When I visit the main page
|
2018-12-13 01:23:12 -05:00
|
|
|
Then I see the main page
|
|
|
|
And I do not see the join button
|
|
|
|
And I see the membership application button
|
|
|
|
|
|
|
|
When I click the membership application button
|
|
|
|
Then I see the membership application tracking page
|