mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 05:23:31 -07:00
fixed server side indexer issue
This commit is contained in:
parent
370ab86dca
commit
1877f70403
15 changed files with 104 additions and 63 deletions
22
NzbDrone.Integration.Test/IndexerIntegrationFixture.cs
Normal file
22
NzbDrone.Integration.Test/IndexerIntegrationFixture.cs
Normal file
|
@ -0,0 +1,22 @@
|
|||
using System.IO;
|
||||
using FluentAssertions;
|
||||
using NUnit.Framework;
|
||||
using NzbDrone.Api.RootFolders;
|
||||
|
||||
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));
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue