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/tests/Recyclarr.Core.Tests/UnitTests/TrashGuide/ConfigTemplateGuideServiceT...

16 lines
410 B

using Recyclarr.TrashGuide;
namespace Recyclarr.Core.Tests.UnitTests.TrashGuide;
[TestFixture]
public class ConfigTemplateGuideServiceTest
{
[Test, AutoMockData]
public void Throw_when_templates_dir_does_not_exist(ConfigTemplateGuideService sut)
{
var act = () => _ = sut.GetTemplateData();
act.Should().Throw<InvalidDataException>().WithMessage("Recyclarr*templates*");
}
}