Sha256: b7e9a39061e441b390f1520ffcf09f8f58862e5ac784b026dd8a61629797dc01

Contents?: true

Size: 1.76 KB

Versions: 2

Compression:

Stored size: 1.76 KB

Contents

Feature: Index Pagination

  Background:
  Scenario: Viewing index when one page of resources exist
    Given an index configuration of:
    """
      ActiveAdmin.register Post
    """
    And 20 posts exist
    When I am on the index page for posts
    Then I should see "Displaying all 20 Posts"
    And I should not see pagination

  Scenario: Viewing index when multiple pages of resources exist
    Given an index configuration of:
    """
      ActiveAdmin.register Post
    """
    And 31 posts exist
    When I am on the index page for posts
    Then I should see pagination with 2 pages

  Scenario: Viewing index with a custom per page set
    Given an index configuration of:
    """
      ActiveAdmin.register Post do
        config.per_page = 2
      end
    """
    And 3 posts exist
    When I am on the index page for posts
    Then I should see pagination with 2 pages
    And I should see "Displaying Posts 1 - 2 of 3 in total"

  Scenario: Viewing index with pagination disabled
    Given an index configuration of:
    """
      ActiveAdmin.register Post do
        config.paginate = false
      end
    """
    And 31 posts exist
    When I am on the index page for posts
    Then I should not see pagination

  Scenario: Viewing index with pagination_total set to false
    Given an index configuration of:
    """
      ActiveAdmin.register Post do
        config.per_page = 10
        index pagination_total: false do
        end
      end
    """
    And 11 posts exist
    When I am on the index page for posts
    Then I should see "Displaying Posts 1 - 10"
    And I should not see "11 in total"
    And I should see the pagination "Next" link

    When I follow "Next"
    Then I should see "Displaying Posts 11 - 11"
    And I should not see the pagination "Next" link

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
activeadmin-rails-1.7.1 features/index/pagination.feature
activeadmin-rails-1.7.0 features/index/pagination.feature