Lidarr/NzbDrone.Core.Test/ProviderTests/DiskProviderTests/FreeDiskSpaceTest.cs

36 lines
914 B
C#
Raw Normal View History

2011-11-12 19:53:36 +00:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
2011-11-12 19:53:36 +00:00
using FluentAssertions;
using Moq;
using NUnit.Framework;
2011-11-13 04:07:06 +00:00
using NzbDrone.Common;
2011-11-12 19:53:36 +00:00
using NzbDrone.Core.Providers.Core;
using NzbDrone.Core.Test.Framework;
using NzbDrone.Test.Common.AutoMoq;
2011-11-12 19:53:36 +00:00
namespace NzbDrone.Core.Test.ProviderTests.DiskProviderTests
{
[TestFixture]
2011-11-13 07:27:16 +00:00
public class FreeDiskSpaceTest : CoreTest
2011-11-12 19:53:36 +00:00
{
[Test]
public void FreeDiskSpace()
{
//Setup
2011-12-15 04:15:53 +00:00
2011-11-12 19:53:36 +00:00
//Act
var di = new DirectoryInfo(Directory.GetCurrentDirectory());
2011-12-15 04:15:53 +00:00
var result = Mocker.Resolve<DiskProvider>().FreeDiskSpace(di);
2011-11-12 19:53:36 +00: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);
}
}
}