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.Tests/TrashGuide/ConfigTemplateGuideServiceT...

17 lines
404 B

using Recyclarr.TrashGuide;
namespace Recyclarr.Tests.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*");
}
}