You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Recyclarr.Tests/Migration/Steps/TestAppPaths.cs

16 lines
356 B

using System.IO.Abstractions;
namespace Recyclarr.Tests.Migration.Steps;
public class TestAppPaths : AppPaths
{
public string BasePath { get; }
public TestAppPaths(IFileSystem fs)
: base(fs)
{
BasePath = fs.Path.Combine("base", "path");
SetAppDataPath(fs.Path.Combine(BasePath, DefaultAppDataDirectoryName));
}
}