Created
December 3, 2009 16:07
-
-
Save kpumuk/248269 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Feature: Nagios | |
In order stop SMS flood in case of emergency | |
As an admin | |
I want to be able to enable or disable SMS notifications | |
Scenario: Disable SMS notifications | |
Given Nagios SMS notifications enabled | |
And I am logged in as an admin user | |
When I go to the path "/nagios" | |
And I press "Disable" | |
Then I should see "Nagios notifications disabled" | |
Scenario: Enable SMS notifications | |
Given Nagios SMS notifications disabled | |
And I am logged in as an admin user | |
When I go to the path "/nagios" | |
And I press "Enable" | |
Then I should see "Nagios notifications enabled" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment