mirror of https://github.com/lidarr/Lidarr
Root agnostic path
This commit is contained in:
parent
4ea35ae626
commit
5de166e3ea
|
@ -20,14 +20,16 @@ namespace NzbDrone.Core.Test.MediaFileTests.EpisodeImportTests
|
||||||
{
|
{
|
||||||
private Series _series;
|
private Series _series;
|
||||||
private LocalEpisode _localEpisode;
|
private LocalEpisode _localEpisode;
|
||||||
private const String ROOT_FOLDER = @"C:\Test\TV";
|
private String _rootFolder;
|
||||||
|
|
||||||
[SetUp]
|
[SetUp]
|
||||||
public void Setup()
|
public void Setup()
|
||||||
{
|
{
|
||||||
|
_rootFolder = @"C:\Test\TV".AsOsAgnostic();
|
||||||
|
|
||||||
_series = Builder<Series>.CreateNew()
|
_series = Builder<Series>.CreateNew()
|
||||||
.With(s => s.SeriesType = SeriesTypes.Standard)
|
.With(s => s.SeriesType = SeriesTypes.Standard)
|
||||||
.With(s => s.Path = Path.Combine(ROOT_FOLDER, "30 Rock"))
|
.With(s => s.Path = Path.Combine(_rootFolder, "30 Rock"))
|
||||||
.Build();
|
.Build();
|
||||||
|
|
||||||
var episodes = Builder<Episode>.CreateListOfSize(1)
|
var episodes = Builder<Episode>.CreateListOfSize(1)
|
||||||
|
@ -94,7 +96,7 @@ namespace NzbDrone.Core.Test.MediaFileTests.EpisodeImportTests
|
||||||
Subject.IsSatisfiedBy(_localEpisode).Should().BeTrue();
|
Subject.IsSatisfiedBy(_localEpisode).Should().BeTrue();
|
||||||
|
|
||||||
Mocker.GetMock<IDiskProvider>()
|
Mocker.GetMock<IDiskProvider>()
|
||||||
.Verify(v => v.GetAvilableSpace(ROOT_FOLDER), Times.Once());
|
.Verify(v => v.GetAvilableSpace(_rootFolder), Times.Once());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue