features/belongs_to.feature in activeadmin-0.6.0 vs features/belongs_to.feature in activeadmin-0.6.1
- old
+ new
@@ -14,12 +14,12 @@
ActiveAdmin.register Post do
belongs_to :user
end
"""
When I go to the last author's posts
- Then the "Users" tab should be selected
- And I should not see a menu item for "Posts"
+ Then the "Posts" tab should be selected
+ And I should not see a menu item for "Users"
And I should see "Displaying 1 Post"
And I should see a link to "Users" in the breadcrumb
Scenario: Viewing a child resource page
Given a configuration of:
@@ -30,10 +30,10 @@
end
"""
When I go to the last author's posts
And I follow "View"
Then I should be on the last author's last post page
- And the "Users" tab should be selected
+ And the "Posts" tab should be selected
Scenario: When the belongs to is optional
Given a configuration of:
"""
ActiveAdmin.register User