mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
Fixed prowl tests
This commit is contained in:
parent
85a143a1b6
commit
51d45247d0
@ -37,14 +37,16 @@ public void Verify_should_throw_for_an_invalid_apiKey()
|
||||
[Test]
|
||||
public void SendNotification_should_not_throw_for_a_valid_apiKey()
|
||||
{
|
||||
Subject.SendNotification("NzbDrone Test", "This is a test message from NzbDrone", _apiKey);
|
||||
Subject.SendNotification("NzbDrone Test", "This is a test message from NzbDrone", _settings);
|
||||
ExceptionVerification.ExpectedWarns(0);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void SendNotification_should_log_a_warning_for_an_invalid_apiKey()
|
||||
{
|
||||
Subject.SendNotification("NzbDrone Test", "This is a test message from NzbDrone", _badApiKey);
|
||||
_settings.ApiKey = _badApiKey;
|
||||
|
||||
Subject.SendNotification("NzbDrone Test", "This is a test message from NzbDrone", _settings);
|
||||
|
||||
ExceptionVerification.ExpectedWarns(1);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user