17 lines
394 B
C#
17 lines
394 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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|