fixed broken tests.

Taloth Saldono 8 years ago
parent 28c45f941b
commit 372442af2c

@ -1,4 +1,5 @@
using System.Linq;
using System.IO;
using System.Linq;
using FizzWare.NBuilder;
using FluentAssertions;
using Marr.Data;
@ -31,10 +32,13 @@ namespace NzbDrone.Core.Test.MediaFiles
.CreateNew()
.Build();
Mocker.GetMock<IDiskProvider>()
.Setup(c => c.FileExists(It.IsAny<string>()))
.Returns(true);
Mocker.GetMock<IDiskProvider>()
.Setup(c => c.GetParentFolder(It.IsAny<string>()))
.Returns<string>(c => Path.GetDirectoryName(c));
}
private void GivenSingleEpisodeWithSingleEpisodeFile()

Loading…
Cancel
Save