mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
logging update.
This commit is contained in:
parent
a2e84a8f83
commit
85fd0e1c22
3 changed files with 14 additions and 3 deletions
|
@ -1,6 +1,8 @@
|
|||
using System.Net;
|
||||
using System.IO;
|
||||
using System.Net;
|
||||
using FluentAssertions;
|
||||
using NUnit.Framework;
|
||||
using NzbDrone.Api.RootFolders;
|
||||
using NzbDrone.Api.Series;
|
||||
using System.Linq;
|
||||
|
||||
|
@ -36,6 +38,10 @@ namespace NzbDrone.Integration.Test
|
|||
{
|
||||
var series = Series.Lookup("archer").First();
|
||||
|
||||
var rootFolder = RootFolders.Post(new RootFolderResource { Path = Directory.GetCurrentDirectory() });
|
||||
|
||||
series.RootFolderId = rootFolder.Id;
|
||||
|
||||
Series.Post(series);
|
||||
|
||||
Series.All().Should().HaveCount(1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue