test: Remove TestAppData

Robert Dailey 10 months ago
parent ed72d05dce
commit 082c6cd206

@ -1,6 +1,6 @@
using System.IO.Abstractions;
using Recyclarr.Cli.Logging;
using Recyclarr.Tests.TestLibrary;
using Recyclarr.Platform;
namespace Recyclarr.Cli.Tests;
@ -10,7 +10,7 @@ public class LogJanitorTest
[Test, AutoMockData]
public void Keep_correct_number_of_newest_log_files(
[Frozen(Matching.ImplementedInterfaces)] MockFileSystem fs,
[Frozen(Matching.ImplementedInterfaces)] TestAppPaths paths,
[Frozen(Matching.ImplementedInterfaces)] AppPaths paths,
LogJanitor janitor)
{
var testFiles = new[]

@ -1,6 +0,0 @@
using System.IO.Abstractions;
using Recyclarr.Platform;
namespace Recyclarr.Tests.TestLibrary;
public sealed class TestAppPaths(IFileSystem fs) : AppPaths(fs.CurrentDirectory().SubDirectory("app"));
Loading…
Cancel
Save