mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
18 lines
437 B
C#
18 lines
437 B
C#
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
|
|
namespace NzbDrone.Integration.Test
|
|
{
|
|
[TestFixture]
|
|
public class IndexerIntegrationFixture : IntegrationTest
|
|
{
|
|
[Test]
|
|
public void should_have_built_in_indexer()
|
|
{
|
|
var indexers = Indexers.All();
|
|
|
|
indexers.Should().NotBeEmpty();
|
|
indexers.Should().NotContain(c => string.IsNullOrWhiteSpace(c.Name));
|
|
}
|
|
}
|
|
} |