Fixed broken DownloadClient tests
This commit is contained in:
parent
21656ecc39
commit
98c5ee4bea
|
@ -1,4 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
using System.Linq;
|
||||||
|
using FizzWare.NBuilder;
|
||||||
using FluentAssertions;
|
using FluentAssertions;
|
||||||
using Moq;
|
using Moq;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
|
@ -7,6 +9,7 @@ using NzbDrone.Core.Configuration;
|
||||||
using NzbDrone.Core.Download.Clients.Nzbget;
|
using NzbDrone.Core.Download.Clients.Nzbget;
|
||||||
using NzbDrone.Core.Parser.Model;
|
using NzbDrone.Core.Parser.Model;
|
||||||
using NzbDrone.Core.Test.Framework;
|
using NzbDrone.Core.Test.Framework;
|
||||||
|
using NzbDrone.Core.Tv;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Test.Download.DownloadClientTests.NzbgetProviderTests
|
namespace NzbDrone.Core.Test.Download.DownloadClientTests.NzbgetProviderTests
|
||||||
{
|
{
|
||||||
|
@ -31,6 +34,12 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.NzbgetProviderTests
|
||||||
_remoteEpisode.Report = new ReportInfo();
|
_remoteEpisode.Report = new ReportInfo();
|
||||||
_remoteEpisode.Report.Title = _title;
|
_remoteEpisode.Report.Title = _title;
|
||||||
_remoteEpisode.Report.NzbUrl = _url;
|
_remoteEpisode.Report.NzbUrl = _url;
|
||||||
|
|
||||||
|
_remoteEpisode.Episodes = Builder<Episode>.CreateListOfSize(1)
|
||||||
|
.All()
|
||||||
|
.With(e => e.AirDate = DateTime.Today)
|
||||||
|
.Build()
|
||||||
|
.ToList();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void WithFailResponse()
|
private void WithFailResponse()
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
|
using System.Linq;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
|
using FizzWare.NBuilder;
|
||||||
using FluentAssertions;
|
using FluentAssertions;
|
||||||
using Moq;
|
using Moq;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
|
@ -8,6 +10,7 @@ using NzbDrone.Core.Configuration;
|
||||||
using NzbDrone.Core.Download.Clients.Sabnzbd;
|
using NzbDrone.Core.Download.Clients.Sabnzbd;
|
||||||
using NzbDrone.Core.Parser.Model;
|
using NzbDrone.Core.Parser.Model;
|
||||||
using NzbDrone.Core.Test.Framework;
|
using NzbDrone.Core.Test.Framework;
|
||||||
|
using NzbDrone.Core.Tv;
|
||||||
using NzbDrone.Test.Common;
|
using NzbDrone.Test.Common;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Test.Download.DownloadClientTests.SabProviderTests
|
namespace NzbDrone.Core.Test.Download.DownloadClientTests.SabProviderTests
|
||||||
|
@ -36,6 +39,12 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.SabProviderTests
|
||||||
_remoteEpisode.Report = new ReportInfo();
|
_remoteEpisode.Report = new ReportInfo();
|
||||||
_remoteEpisode.Report.Title = TITLE;
|
_remoteEpisode.Report.Title = TITLE;
|
||||||
_remoteEpisode.Report.NzbUrl = URL;
|
_remoteEpisode.Report.NzbUrl = URL;
|
||||||
|
|
||||||
|
_remoteEpisode.Episodes = Builder<Episode>.CreateListOfSize(1)
|
||||||
|
.All()
|
||||||
|
.With(e => e.AirDate = DateTime.Today)
|
||||||
|
.Build()
|
||||||
|
.ToList();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void WithFailResponse()
|
private void WithFailResponse()
|
||||||
|
|
Loading…
Reference in New Issue