Sha256: 89a1ff212d29086c9420ba066628b5da4f1953b702da3d23068b5d964bd09140

Contents?: true

Size: 604 Bytes

Versions: 14

Compression:

Stored size: 604 Bytes

Contents

Feature: Table view
  Background:
    Given I am logged in as "test@example.com"
    And users exists with attributes:
      | email            | first_name |
      | bob@example.com  | Bob        |
      | alex@example.com | Alex       |
      | jack@example.com | Jack       |
    And I am on the admin users page

  Scenario: List of users
    Then I should see list of users

  Scenario: Filtering users
    Given I see search form with "Email" filter
    When I fill in "Email" with "bob"
    And I press "Filter"
    Then I should see "bob@example.com"
    And I should not see "alex@example.com"

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
ab_admin-0.3.6 features/index_views/table.feature
ab_admin-0.3.5 features/index_views/table.feature
ab_admin-0.3.4 features/index_views/table.feature
ab_admin-0.3.3 features/index_views/table.feature
ab_admin-0.3.2 features/index_views/table.feature
ab_admin-0.3.1 features/index_views/table.feature
ab_admin-0.3.0 features/index_views/table.feature
ab_admin-0.2.3 features/index_views/table.feature
ab_admin-0.2.2 features/index_views/table.feature
ab_admin-0.2.1 features/index_views/table.feature
ab_admin-0.2.0 features/index_views/table.feature
ab_admin-0.1.2 features/index_views/table.feature
ab_admin-0.1.1 features/index_views/table.feature
ab_admin-0.1.0 features/index_views/table.feature