You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using NzbDrone.Api.Series;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Integration.Test
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
public class SeriesTest : SmokeTestBase
|
|
|
|
|
{
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_have_no_series_on_start_application()
|
|
|
|
|
{
|
|
|
|
|
Series.GetAll().Should().BeEmpty();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void series_lookup_on_trakt()
|
|
|
|
|
{
|
|
|
|
|
var series = Series.Lookup("archer");
|
|
|
|
|
|
|
|
|
|
series.Should().NotBeEmpty();
|
|
|
|
|
series.Should().Contain(c => c.Title == "Archer (2009)");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
[Ignore]
|
|
|
|
|
public void add_series_without_required_fields_should_return_400()
|
|
|
|
|
{
|
|
|
|
|
Series.Post(new SeriesResource());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|