Sha256: 939bec853df752096b27931b9e2216cd0c604e8572ee93ec1695dd8ef8b52254

Contents?: true

Size: 613 Bytes

Versions: 9

Compression:

Stored size: 613 Bytes

Contents

Feature: User Logging out

  Logging out of the system as an admin user

  Scenario: Logging out successfully
    Given a configuration of:
    """
      ActiveAdmin.register Post
    """
    And I am logged in
    When I go to the dashboard
    And I follow "Logout"
    Then I should see "Login"

  Scenario: With logout_link_path set to :logout_path (the symbol)
    Given a configuration of:
      """
      ActiveAdmin.setup do |config|
        config.logout_link_path = :logout_path
      end
      """
    And I am logged in
    When I go to the dashboard
    Then I should see the default welcome message

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
activeadmin-0.4.4 features/users/logging_out.feature
activeadmin-0.4.3 features/users/logging_out.feature
activeadmin-0.4.2 features/users/logging_out.feature
activeadmin-0.4.1 features/users/logging_out.feature
activeadmin-0.4.0 features/users/logging_out.feature
andrewroth_activeadmin-0.3.4.4 features/users/logging_out.feature
andrewroth_activeadmin-0.3.4.3 features/users/logging_out.feature
andrewroth_activeadmin-0.3.4.2 features/users/logging_out.feature
andrewroth_activeadmin-0.3.4.1 features/users/logging_out.feature