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 / favicon.feature
Size: Mime:
Feature: Favicon

  Configuring a Favicon file

  Background:
    Given a configuration of:
    """
      ActiveAdmin.register Post
      ActiveAdmin.application.favicon = "a/favicon.ico"
    """

  Scenario: Logged out views show Favicon
    Given I am logged out
    When I am on the login page
    Then I should see the favicon "a/favicon.ico"

  Scenario: Logged in views show Favicon
    Given I am logged in
    When I am on the dashboard
    Then I should see the favicon "a/favicon.ico"