mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
Allow episode zero in tests, but fail in season and episode are both zero
This commit is contained in:
@@ -96,7 +96,9 @@ namespace NzbDrone.Core.Test.MetadataSourceTests
|
|||||||
private void ValidateEpisode(Episode episode)
|
private void ValidateEpisode(Episode episode)
|
||||||
{
|
{
|
||||||
episode.Should().NotBeNull();
|
episode.Should().NotBeNull();
|
||||||
episode.EpisodeNumber.Should().NotBe(0);
|
|
||||||
|
//TODO: Is there a better way to validate that episode number or season number is greater than zero?
|
||||||
|
(episode.EpisodeNumber + episode.SeasonNumber).Should().NotBe(0);
|
||||||
|
|
||||||
episode.Should().NotBeNull();
|
episode.Should().NotBeNull();
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Threading;
|
||||||
using Growl.Connector;
|
using Growl.Connector;
|
||||||
using NLog;
|
using NLog;
|
||||||
using NzbDrone.Common.Instrumentation;
|
using NzbDrone.Common.Instrumentation;
|
||||||
@@ -63,6 +64,8 @@ namespace NzbDrone.Core.Notifications.Growl
|
|||||||
const string title = "Test Notification";
|
const string title = "Test Notification";
|
||||||
const string body = "This is a test message from NzbDrone";
|
const string body = "This is a test message from NzbDrone";
|
||||||
|
|
||||||
|
Thread.Sleep(5000);
|
||||||
|
|
||||||
SendNotification(title, body, "TEST", message.Host, message.Port, message.Password);
|
SendNotification(title, body, "TEST", message.Host, message.Port, message.Password);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user