features/specifying_actions.feature in andrewroth_activeadmin-0.3.4 vs features/specifying_actions.feature in andrewroth_activeadmin-0.3.4.1

- old
+ new

@@ -5,9 +5,14 @@ Scenario: Only creating the index action Given a configuration of: """ ActiveAdmin.register Post do actions :index + index do + column do |post| + link_to "View", admin_post_path(post) + end + end end """ And I am logged in And a post with the title "Hello World" exists When I am on the index page for posts