Sha256: 73bc2eddace26d6dcb2aa1677472f153f5a4458096a9535eee59c3fbd1bec97c

Contents?: true

Size: 1.07 KB

Versions: 2

Compression:

Stored size: 1.07 KB

Contents

Feature: Manage Users
  In order to control who can access my website's backend
  As an administrator
  I want to create and manage users

  Scenario: When there are no users, you are invited to create a user
    Given I have no users
    When I go to the home page
    Then I should see "There are no users yet, so we'll set you up first."

  Scenario: When there are no users, you can create a user
    Given I have no users
    And I go to the home page
    When I press "Continue..."
    And I should see "Fill out your details below so that we can get you started."
    And I fill in "Login" with "cucumber"
    And I fill in "Email" with "green@cucumber.com"
    And I fill in "Password" with "greenandjuicy"
    And I fill in "Password confirmation" with "greenandjuicy"
    And I press "Sign up"
    Then I should see "Welcome to Refinery, cucumber."
    And I should see "Latest Activity"
    And I should have 1 user

  Scenario: User List
    Given I have a user named "resolve"
    And I am a logged in refinery user
    When I go to the list of users
    Then I should see "resolve"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
refinerycms-0.9.7.10 features/refinery/manage_users.feature
refinerycms-0.9.7.9 features/refinery/manage_users.feature