Sha256: 736509966bd1dfc7e18173719e9cf5240de16219298e2815351bf73c9b7ec9dd

Contents?: true

Size: 1.44 KB

Versions: 31

Compression:

Stored size: 1.44 KB

Contents

Feature: Show - Default Content

  Viewing the show page for a resource

  Background:
    Given a post with the title "Hello World" written by "Jane Doe" exists

  Scenario: Viewing the default show page
    Given a show configuration of:
      """
        ActiveAdmin.register Post
      """
    Then I should see the attribute "Title" with "Hello World"
    And I should see the attribute "Body" with "Empty"
    And I should see the attribute "Created At" with a nicely formatted datetime
    And I should see the attribute "Author" with "Jane Doe"
    And I should see an action item button "Delete Post"
    And I should see an action item button "Edit Post"

  Scenario: Attributes should link when linked resource is registered
    Given a show configuration of:
      """
        ActiveAdmin.register Post
        ActiveAdmin.register User
      """
    Then I should see the attribute "Author" with "Jane Doe"
    And I should see a link to "Jane Doe"

  Scenario: Customizing the attributes table with a set of attributes
    Given a show configuration of:
    """
      ActiveAdmin.register Post do

        show do
          attributes_table :title, :body, :created_at, :updated_at
        end

      end
    """
    Then I should see the attribute "Title" with "Hello World"
    And I should see the attribute "Body" with "Empty"
    And I should see the attribute "Created At" with a nicely formatted datetime
    And I should not see the attribute "Author"

Version data entries

31 entries across 31 versions & 5 rubygems

Version Path
yousty-activeadmin-1.0.17.pre features/show/default_content.feature
yousty-activeadmin-1.0.16.pre features/show/default_content.feature
yousty-activeadmin-1.0.15.pre features/show/default_content.feature
yousty-activeadmin-1.0.14.pre features/show/default_content.feature
yousty-activeadmin-1.0.13.pre features/show/default_content.feature
yousty-activeadmin-1.0.12.pre features/show/default_content.feature
yousty-activeadmin-1.0.11.pre features/show/default_content.feature
yousty-activeadmin-1.0.10.pre features/show/default_content.feature
yousty-activeadmin-1.0.9.pre features/show/default_content.feature
yousty-activeadmin-1.0.8.pre features/show/default_content.feature
activeadmin-1.0.0.pre1 features/show/default_content.feature
yousty-activeadmin-1.0.7.pre features/show/default_content.feature
yousty-activeadmin-1.0.6.pre features/show/default_content.feature
yousty-activeadmin-1.0.5.pre features/show/default_content.feature
activeadmin-0.6.6 features/show/default_content.feature
activeadmin-0.6.5 features/show/default_content.feature
activeadmin-0.6.4 features/show/default_content.feature
yousty-activeadmin-1.0.4.pre features/show/default_content.feature
yousty-activeadmin-1.0.3.pre features/show/default_content.feature
active_administration-0.0.3 features/show/default_content.feature