NCrunch works for unit tests

This commit is contained in:
Mark McDowall 2012-09-28 22:09:07 -07:00
commit 35511a8b76
7 changed files with 52 additions and 9 deletions

View file

@ -62,7 +62,7 @@ namespace NzbDrone.Common.Test
var targetPath = Path.Combine(BinFolderCopy.FullName, "file.move");
diskProvider.MoveFile(BinFolderCopy.GetFiles("*.dll", SearchOption.AllDirectories).First().FullName, targetPath);
diskProvider.MoveFile(BinFolderCopy.GetFiles("*.dll", SearchOption.AllDirectories).First().FullName, targetPath);
diskProvider.MoveFile(BinFolderCopy.GetFiles("*.pdb", SearchOption.AllDirectories).First().FullName, targetPath);
File.Exists(targetPath).Should().BeTrue();
}