Welcome to mirror list, hosted at ThFree Co, Russian Federation.

registrations.feature « desktop « features - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1abcc09c4771c663a3330d1a54dff30382633b46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
@javascript
Feature: New user registration
  In order to use Diaspora*
  As a desktop user
  I want to register an account

  Scenario: user signs up and goes to getting started
    Given I am on the new user registration page
    When I fill in the new user form
    And I press "Create account"
    Then I should be on the getting started page
    And I should see the 'getting started' contents

  Scenario: registrations are closed, user is informed
    Given the registrations are closed
    When I am on the new user registration page
    Then I should see "Open signups are closed at this time"

  Scenario: User is unable to register even by manually sending the POST request
    Given I am on the new user registration page
    When I fill in the new user form
    Given the registrations are closed
    When I press "Create account"
    Then I should see "Open signups are closed at this time"