New: Readarr 0.1

This commit is contained in:
ta264
2020-05-06 21:14:11 +01:00
parent 476f2d6047
commit 08496c82af
911 changed files with 14837 additions and 24442 deletions
@@ -21,7 +21,7 @@ namespace NzbDrone.Core.Test.Profiles
Subject.Handle(new ApplicationStartedEvent());
Mocker.GetMock<IProfileRepository>()
.Verify(v => v.Insert(It.IsAny<QualityProfile>()), Times.Exactly(3));
.Verify(v => v.Insert(It.IsAny<QualityProfile>()), Times.Exactly(4));
}
[Test]
@@ -47,7 +47,7 @@ namespace NzbDrone.Core.Test.Profiles
.With(p => p.Id = 2)
.Build();
var artistList = Builder<Artist>.CreateListOfSize(3)
var artistList = Builder<Author>.CreateListOfSize(3)
.Random(1)
.With(c => c.QualityProfileId = profile.Id)
.Build().ToList();
@@ -79,7 +79,7 @@ namespace NzbDrone.Core.Test.Profiles
.With(p => p.Id = 2)
.Build();
var artistList = Builder<Artist>.CreateListOfSize(3)
var artistList = Builder<Author>.CreateListOfSize(3)
.All()
.With(c => c.QualityProfileId = 1)
.Build().ToList();
@@ -111,7 +111,7 @@ namespace NzbDrone.Core.Test.Profiles
.With(p => p.Id = 2)
.Build();
var artistList = Builder<Artist>.CreateListOfSize(3)
var artistList = Builder<Author>.CreateListOfSize(3)
.All()
.With(c => c.QualityProfileId = 1)
.Build().ToList();
@@ -139,7 +139,7 @@ namespace NzbDrone.Core.Test.Profiles
[Test]
public void should_delete_profile_if_not_assigned_to_artist_import_list_or_root_folder()
{
var artistList = Builder<Artist>.CreateListOfSize(3)
var artistList = Builder<Author>.CreateListOfSize(3)
.All()
.With(c => c.QualityProfileId = 2)
.Build().ToList();