1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core.Test/ProviderTests/DiskProviderTests/FreeDiskSpaceTest.cs

36 lines
914 B
C#
Raw Normal View History

2011-11-12 22:53:36 +03:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
2011-11-12 22:53:36 +03:00
using FluentAssertions;
using Moq;
using NUnit.Framework;
2011-11-13 07:07:06 +03:00
using NzbDrone.Common;
2011-11-12 22:53:36 +03:00
using NzbDrone.Core.Providers.Core;
using NzbDrone.Core.Test.Framework;
using NzbDrone.Test.Common.AutoMoq;
2011-11-12 22:53:36 +03:00
namespace NzbDrone.Core.Test.ProviderTests.DiskProviderTests
{
[TestFixture]
2011-11-13 10:27:16 +03:00
public class FreeDiskSpaceTest : CoreTest
2011-11-12 22:53:36 +03:00
{
[Test]
public void FreeDiskSpace()
{
//Setup
2011-12-15 07:15:53 +03:00
2011-11-12 22:53:36 +03:00
//Act
var di = new DirectoryInfo(Directory.GetCurrentDirectory());
2011-12-15 07:15:53 +03:00
var result = Mocker.Resolve<DiskProvider>().FreeDiskSpace(di);
2011-11-12 22:53:36 +03:00
//Asert
//Checks to ensure that the free space on the first is greater than 0 (It should be in 99.99999999999999% of cases... I hope)
result.Should().BeGreaterThan(0);
}
}
}