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.
16 lines
395 B
16 lines
395 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*");
|
|
}
|
|
}
|