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