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
410 B
16 lines
410 B
1 year ago
|
using Recyclarr.TrashGuide;
|
||
|
|
||
1 week ago
|
namespace Recyclarr.Core.Tests.UnitTests.TrashGuide;
|
||
1 year ago
|
|
||
|
[TestFixture]
|
||
|
public class ConfigTemplateGuideServiceTest
|
||
|
{
|
||
|
[Test, AutoMockData]
|
||
3 months ago
|
public void Throw_when_templates_dir_does_not_exist(ConfigTemplateGuideService sut)
|
||
1 year ago
|
{
|
||
|
var act = () => _ = sut.GetTemplateData();
|
||
|
|
||
|
act.Should().Throw<InvalidDataException>().WithMessage("Recyclarr*templates*");
|
||
|
}
|
||
|
}
|