Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
activeadmin / features / root_to.feature
Size: Mime:
Feature: Namespace root

  As a developer
  In order to customize the welcome page
  I want to set it in the configuration

  Scenario: Default root is the Dashboard
    Given I am logged in with capybara
    Then I should be on the dashboard

  Scenario: Set root to "stores#index"
    Given a configuration of:
    """
      ActiveAdmin.application.root_to = 'stores#index'
    """
    Given I am logged in with capybara
    Then I should see the page title "Bookstores"