test: Remove TestAppData

integration-tests
Robert Dailey 5 months ago
parent 39f0070317
commit 3fa3231f00

@ -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