Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/9484e7d2a9074e3e0f1af4b6053daa0b335772f6 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Xem integration tests for American Dad.

pull/6/head
kayone 12 years ago
parent 182743e653
commit 9484e7d2a9

@ -21,7 +21,12 @@ namespace NzbDrone.Core.Test.Providers
[Test]
public void get_series_ids()
{
Subject.GetXemSeriesIds().Should().NotBeEmpty();
var ids = Subject.GetXemSeriesIds();
ids.Should().NotBeEmpty();
ids.Should().Contain(i => i == 73141);
}
@ -47,6 +52,7 @@ namespace NzbDrone.Core.Test.Providers
}
[TestCase(82807)]
[TestCase(73141, Description = "American Dad!")]
public void should_get_mapping(int seriesId)
{
var result = Subject.GetSceneTvdbMappings(seriesId);

Loading…
Cancel
Save