|
|
|
@ -147,6 +147,7 @@ namespace NzbDrone.Core.Test.ProviderTests.SearchProviderTests
|
|
|
|
|
var parseResults = Builder<EpisodeParseResult>.CreateListOfSize(5)
|
|
|
|
|
.All()
|
|
|
|
|
.With(e => e.AirDate = DateTime.Today)
|
|
|
|
|
.With(e => e.Quality = new Quality(QualityTypes.HDTV, false))
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
WithNullSeries();
|
|
|
|
@ -167,6 +168,7 @@ namespace NzbDrone.Core.Test.ProviderTests.SearchProviderTests
|
|
|
|
|
var parseResults = Builder<EpisodeParseResult>.CreateListOfSize(5)
|
|
|
|
|
.All()
|
|
|
|
|
.With(e => e.AirDate = DateTime.Today)
|
|
|
|
|
.With(e => e.Quality = new Quality(QualityTypes.HDTV, false))
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
WithMisMatchedSeries();
|
|
|
|
@ -242,6 +244,7 @@ namespace NzbDrone.Core.Test.ProviderTests.SearchProviderTests
|
|
|
|
|
var parseResults = Builder<EpisodeParseResult>.CreateListOfSize(5)
|
|
|
|
|
.All()
|
|
|
|
|
.With(e => e.AirDate = null)
|
|
|
|
|
.With(e => e.Quality = new Quality(QualityTypes.HDTV, false))
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
WithMatchingSeries();
|
|
|
|
@ -262,6 +265,7 @@ namespace NzbDrone.Core.Test.ProviderTests.SearchProviderTests
|
|
|
|
|
var parseResults = Builder<EpisodeParseResult>.CreateListOfSize(5)
|
|
|
|
|
.All()
|
|
|
|
|
.With(e => e.AirDate = DateTime.Today.AddDays(10))
|
|
|
|
|
.With(e => e.Quality = new Quality(QualityTypes.HDTV, false))
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
WithMatchingSeries();
|
|
|
|
|