mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
moved data from Roaming to ProgramData.
Cleaned up DiskProvider
This commit is contained in:
parent
7ff1335a2e
commit
d60b863e14
33 changed files with 202 additions and 242 deletions
|
@ -12,13 +12,13 @@ namespace NzbDrone.Common.Test
|
|||
public class PathExtensionFixture : TestBase
|
||||
{
|
||||
|
||||
private IAppDirectoryInfo GetIAppDirectoryInfo()
|
||||
private IAppFolderInfo GetIAppDirectoryInfo()
|
||||
{
|
||||
var fakeEnvironment = new Mock<IAppDirectoryInfo>();
|
||||
var fakeEnvironment = new Mock<IAppFolderInfo>();
|
||||
|
||||
fakeEnvironment.SetupGet(c => c.WorkingDirectory).Returns(@"C:\NzbDrone\");
|
||||
fakeEnvironment.SetupGet(c => c.AppDataFolder).Returns(@"C:\NzbDrone\");
|
||||
|
||||
fakeEnvironment.SetupGet(c => c.SystemTemp).Returns(@"C:\Temp\");
|
||||
fakeEnvironment.SetupGet(c => c.TempFolder).Returns(@"C:\Temp\");
|
||||
|
||||
return fakeEnvironment.Object;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue