BigW Consortium Gitlab

active_tab.feature 1.72 KB
Newer Older
1
@admin
2
Feature: Admin Active Tab
3 4 5 6 7
  Background:
    Given I sign in as an admin

  Scenario: On Admin Home
    Given I visit admin page
8
    Then the active main tab should be Overview
9 10 11 12
    And no other main tabs should be active

  Scenario: On Admin Projects
    Given I visit admin projects page
13 14
    Then the active main tab should be Overview
    And the active sub tab should be Projects
15
    And no other main tabs should be active
16
    And no other sub tabs should be active
17

18 19
  Scenario: On Admin Groups
    Given I visit admin groups page
20 21
    Then the active main tab should be Overview
    And the active sub tab should be Groups
22
    And no other main tabs should be active
23
    And no other sub tabs should be active
24

25 26
  Scenario: On Admin Users
    Given I visit admin users page
27 28
    Then the active main tab should be Overview
    And the active sub tab should be Users
29
    And no other main tabs should be active
30
    And no other sub tabs should be active
31 32 33

  Scenario: On Admin Logs
    Given I visit admin logs page
34 35
    Then the active main tab should be Monitoring
    And the active sub tab should be Logs
36
    And no other main tabs should be active
37
    And no other sub tabs should be active
38

39 40 41 42 43
  Scenario: On Admin Messages
    Given I visit admin messages page
    Then the active main tab should be Messages
    And no other main tabs should be active

44 45 46 47 48 49 50
  Scenario: On Admin Hooks
    Given I visit admin hooks page
    Then the active main tab should be Hooks
    And no other main tabs should be active

  Scenario: On Admin Resque
    Given I visit admin Resque page
51 52
    Then the active main tab should be Monitoring
    And the active sub tab should be Resque
53
    And no other main tabs should be active
54
    And no other sub tabs should be active