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 / dashboard.feature
Size: Mime:
Feature: Dashboard

  Scenario: With default configuration
    Given a configuration of:
      """
      ActiveAdmin.register_page "Dashboard" do
        content do
          para "Hello world from the dashboard page"
        end
      end
      """
    Given I am logged in
    When I go to the dashboard
    Then I should see the Active Admin layout
    And I should not see the default welcome message
    And I should see "Hello world from the dashboard page"