Sha256: fe9c70658e50f82ca357567b0c5b8795a8b7aa8f205235b7f1f24b359bb01909

Contents?: true

Size: 839 Bytes

Versions: 8

Compression:

Stored size: 839 Bytes

Contents

Feature: admins manage users
  As an admin I want to manage users

  Background:
    Given there exists a menu element "Users" linking to "/admin/users" for menu "Admin Navigation: Secondary"
    Given I login as a new "scitent admin"
 
  @javascript
  Scenario: admin edits user
    Given there exists learner "aaa@test.local" named "bbb"
    Given user "aaa@test.local" has school "Madison School"
    When I follow "Users"
    When I fill in "search" with "bbb"
    And I press "Search"
    Then I should see "bbb"
    When I follow "Edit"
    When I fill in "user[profile_attributes][last_name]" with "zzz"
    When I fill in "user[profile_attributes][first_name]" with "zzz"
    Then I should see "Madison School"
    And I press "Update"
    When I follow "Users"
    Then I should see "zzz, zzz"
    And I should not see "bbb, bbb"

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
scidea-schools-1.1 features/manage_users.feature
scidea-schools-1.0.6 features/manage_users.feature
scidea-schools-1.0.5 features/manage_users.feature
scidea-schools-1.0.4 features/manage_users.feature
scidea-schools-1.0.3 features/manage_users.feature
scidea-schools-1.0.2 features/manage_users.feature
scidea-schools-1.0.1 features/manage_users.feature
scidea-schools-1.0.0 features/manage_users.feature