Sha256: 116c2f262b473745039378b5644c30f74644d05c7fdabd8722673a40c4c72e8d

Contents?: true

Size: 1.19 KB

Versions: 53

Compression:

Stored size: 1.19 KB

Contents

Feature: Index Formats

  Scenario: View index with default formats
    Given an index configuration of:
    """
      ActiveAdmin.register Post
    """
    And 1 post exists
    When I am on the index page for posts
    Then I should see a link to download "CSV"
    And I should see a link to download "XML"
    And I should see a link to download "JSON"

  Scenario: View index with download_links set to false
    Given an index configuration of:
    """
      ActiveAdmin.register Post do
        index :download_links => false
      end
    """
    And 1 post exists
    When I am on the index page for posts
    Then I should not see a link to download "CSV"
    And I should not see a link to download "XML"
    And I should not see a link to download "JSON"

  Scenario: View index with pdf download link set
    Given an index configuration of:
    """
      ActiveAdmin.register Post do
        index :download_links => [:pdf]
      end
    """
    And 1 post exists
    When I am on the index page for posts
    Then I should not see a link to download "CSV"
    And I should not see a link to download "XML"
    And I should not see a link to download "JSON"
    And I should see a link to download "PDF"

Version data entries

53 entries across 53 versions & 3 rubygems

Version Path
lalala-4.0.0.dev.65 vendor/deps/active_admin/features/index/formats.feature
activeadmin-0.6.0 features/index/formats.feature
lalala-4.0.0.dev.64 vendor/deps/active_admin/features/index/formats.feature
lalala-4.0.0.dev.63 vendor/deps/active_admin/features/index/formats.feature
lalala-4.0.0.dev.62 vendor/deps/active_admin/features/index/formats.feature
lalala-4.0.0.dev.61 vendor/deps/active_admin/features/index/formats.feature
lalala-4.0.0.dev.60 vendor/deps/active_admin/features/index/formats.feature
lalala-4.0.0.dev.59 vendor/deps/active_admin/features/index/formats.feature
lalala-4.0.0.dev.58 vendor/deps/active_admin/features/index/formats.feature
lalala-4.0.0.dev.57 vendor/deps/active_admin/features/index/formats.feature
lalala-4.0.0.dev.56 vendor/deps/active_admin/features/index/formats.feature
lalala-4.0.0.dev.50 vendor/deps/active_admin/features/index/formats.feature
lalala-4.0.0.dev.46 vendor/deps/active_admin/features/index/formats.feature