mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
21 lines
541 B
C#
21 lines
541 B
C#
|
using NzbDrone.Core.Indexers.Nzbx;
|
|||
|
using NzbDrone.Core.Test.Framework;
|
|||
|
using NUnit.Framework;
|
|||
|
using System.Linq;
|
|||
|
using FluentAssertions;
|
|||
|
|
|||
|
namespace NzbDrone.Core.Test.IndexerTests.ParserTests
|
|||
|
{
|
|||
|
public class NzbxParserFixture : CoreTest<NzbxParser>
|
|||
|
{
|
|||
|
[Test]
|
|||
|
public void should_be_able_to_parse_json()
|
|||
|
{
|
|||
|
var stream = OpenRead("Files", "Indexers", "Nzbx", "nzbx_recent.json");
|
|||
|
|
|||
|
var result = Subject.Process(stream).ToList();
|
|||
|
|
|||
|
result.Should().NotBeEmpty();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|