mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
33 lines
891 B
C#
33 lines
891 B
C#
|
using System.IO;
|
|||
|
using FluentAssertions;
|
|||
|
using NUnit.Framework;
|
|||
|
using NzbDrone.Api.RootFolders;
|
|||
|
|
|||
|
namespace NzbDrone.Integration.Test
|
|||
|
{
|
|||
|
[TestFixture]
|
|||
|
public class QualityProfileIntegrationTest : IntegrationTest
|
|||
|
{
|
|||
|
[Test]
|
|||
|
public void should_have_2_quality_profiles_initially()
|
|||
|
{
|
|||
|
RootFolders.All().Should().BeEmpty();
|
|||
|
|
|||
|
var rootFolder = new RootFolderResource
|
|||
|
{
|
|||
|
Path = Directory.GetCurrentDirectory()
|
|||
|
};
|
|||
|
|
|||
|
var postResponse = RootFolders.Post(rootFolder);
|
|||
|
|
|||
|
postResponse.Id.Should().NotBe(0);
|
|||
|
postResponse.FreeSpace.Should().NotBe(0);
|
|||
|
|
|||
|
RootFolders.All().Should().OnlyContain(c => c.Id == postResponse.Id);
|
|||
|
|
|||
|
RootFolders.Delete(postResponse.Id);
|
|||
|
|
|||
|
RootFolders.All().Should().BeEmpty();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|