mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-27 18:28:19 +00:00
Xem integration tests for American Dad.
This commit is contained in:
parent
182743e653
commit
9484e7d2a9
1 changed files with 7 additions and 1 deletions
|
@ -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…
Reference in a new issue