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
@@ -26,17 +26,17 @@ namespace NzbDrone.Core.Test.QueueTests
.With(v => v.RemainingTime = TimeSpan.FromSeconds(10))
.Build();
var artist = Builder<Artist>.CreateNew()
var artist = Builder<Author>.CreateNew()
.Build();
var albums = Builder<Album>.CreateListOfSize(3)
var albums = Builder<Book>.CreateListOfSize(3)
.All()
.With(e => e.ArtistId = artist.Id)
.With(e => e.AuthorId = artist.Id)
.Build();
var remoteAlbum = Builder<RemoteAlbum>.CreateNew()
.With(r => r.Artist = artist)
.With(r => r.Albums = new List<Album>(albums))
.With(r => r.Albums = new List<Book>(albums))
.With(r => r.ParsedAlbumInfo = new ParsedAlbumInfo())
.Build();