Feature: Registering Pages Registering pages within Active Admin Background: Given I am logged in Scenario: Registering a page Given a configuration of: """ ActiveAdmin.register_page "Status" do content do "I love chocolate." end end """ When I go to the dashboard And I follow "Status" Then I should see the page title "Status" And I should see the Active Admin layout And I should see the content "I love chocolate." Scenario: Registering a page with a complex name Given a configuration of: """ ActiveAdmin.register_page "Chocolate I lØve You!" do content do "I love chocolate." end end """ When I go to the dashboard And I follow "Chocolate I lØve You!" Then I should see the page title "Chocolate I lØve You!" And I should see the Active Admin layout And I should see the content "I love chocolate." Scenario: Registering an empty page Given a configuration of: """ ActiveAdmin.register_page "Status" """ When I go to the dashboard And I follow "Status" Then I should see the page title "Status" And I should see the Active Admin layout Scenario: Registering a page with a custom title as a string Given a configuration of: """ ActiveAdmin.register_page "Status" do content :title => "Custom Page Title" do "I love chocolate." end end """ When I go to the dashboard And I follow "Status" Then I should see the page title "Custom Page Title" Scenario: Registering a page with a custom title as a proc Given a configuration of: """ ActiveAdmin.register_page "Status" do content :title => proc{ "Custom Page Title from Proc" } do "I love chocolate." end end """ When I go to the dashboard And I follow "Status" Then I should see the page title "Custom Page Title from Proc" Scenario: Adding a sidebar section to a page Given a configuration of: """ ActiveAdmin.register_page "Status" do sidebar :help do "Need help? Email us at help@example.com" end content do "I love chocolate." end end """ When I go to the dashboard And I follow "Status" Then I should see a sidebar titled "Help" Scenario: Adding an action item to a page Given a configuration of: """ ActiveAdmin.register_page "Status" do action_item do link_to "Visit", "/" end content do "I love chocolate." end end """ When I go to the dashboard And I follow "Status" Then I should see an action item link to "Visit" Scenario: Adding a page action to a page Given a configuration of: """ ActiveAdmin.register_page "Status" do page_action :check do redirect_to admin_status_path end content do ("Chocolate I lØve You!" + link_to("Check", admin_status_check_path)).html_safe end end """ When I go to the dashboard And I follow "Status" And I follow "Check" Then I should see the content "Chocolate I lØve You!"