mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-12-28 16:56:00 +01:00
18 lines
395 B
C#
18 lines
395 B
C#
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Core.Test.Framework;
|
|
using NzbDrone.Core.ThingiProvider;
|
|
|
|
namespace NzbDrone.Core.Test.ThingiProviderTests
|
|
{
|
|
[TestFixture]
|
|
public class NullConfigFixture : CoreTest<NullConfig>
|
|
{
|
|
[Test]
|
|
public void should_be_valid()
|
|
{
|
|
Subject.Validate().IsValid.Should().BeTrue();
|
|
}
|
|
}
|
|
}
|