Moved FreeDiskSpace to DiskProvider.

This commit is contained in:
Mark McDowall 2011-11-12 11:53:36 -08:00
commit 95cdc4b78c
6 changed files with 59 additions and 29 deletions

View file

@ -80,13 +80,5 @@ namespace NzbDrone.Core.Test
Console.WriteLine(dateTime.DayOfWeek);
dateTime.ToBestDateString().Should().Be(dateTime.ToShortDateString());
}
[Test]
public void FreeDiskSpace()
{
//Checks to ensure that the free space on the first is greater than 0 (It should be in 99.99999999999999% of cases... I hope)
var di = new DirectoryInfo(Directory.GetCurrentDirectory());
di.FreeDiskSpace().Should().BeGreaterThan(0);
}
}
}