mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed broken tests after adding new job.
This commit is contained in:
@@ -37,6 +37,8 @@ namespace NzbDrone.Core.Test.JobTests
|
||||
.Setup(p => p.Scan(series))
|
||||
.Returns(new List<EpisodeFile>());
|
||||
|
||||
Mocker.GetMock<AutoIgnoreJob>()
|
||||
.Setup(s => s.Start(It.IsAny<ProgressNotification>(), 0, 0));
|
||||
|
||||
//Act
|
||||
Mocker.Resolve<DiskScanJob>().Start(new ProgressNotification("Test"), series.SeriesId, 0);
|
||||
@@ -69,6 +71,9 @@ namespace NzbDrone.Core.Test.JobTests
|
||||
.Setup(s => s.Scan(series[1]))
|
||||
.Returns(new List<EpisodeFile>());
|
||||
|
||||
Mocker.GetMock<AutoIgnoreJob>()
|
||||
.Setup(s => s.Start(It.IsAny<ProgressNotification>(), 0, 0));
|
||||
|
||||
Mocker.Resolve<DiskScanJob>().Start(new ProgressNotification("Test"), 0, 0);
|
||||
|
||||
|
||||
@@ -97,6 +102,9 @@ namespace NzbDrone.Core.Test.JobTests
|
||||
.Setup(s => s.Scan(series[1]))
|
||||
.Throws(new InvalidOperationException("Bad Job"));
|
||||
|
||||
Mocker.GetMock<AutoIgnoreJob>()
|
||||
.Setup(s => s.Start(It.IsAny<ProgressNotification>(), 0, 0));
|
||||
|
||||
Mocker.Resolve<DiskScanJob>().Start(new ProgressNotification("Test"), 0, 0);
|
||||
|
||||
|
||||
@@ -126,6 +134,9 @@ namespace NzbDrone.Core.Test.JobTests
|
||||
.Setup(s => s.Scan(series[1]))
|
||||
.Returns(new List<EpisodeFile>());
|
||||
|
||||
Mocker.GetMock<AutoIgnoreJob>()
|
||||
.Setup(s => s.Start(It.IsAny<ProgressNotification>(), 0, 0));
|
||||
|
||||
Mocker.Resolve<DiskScanJob>().Start(new ProgressNotification("Test"), 0, 0);
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user