1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-30 10:51:42 +00:00

Fixed xem integration test

This commit is contained in:
Mark McDowall 2014-07-13 20:19:19 -07:00
parent bb87d4e96e
commit 6483e0951c

View file

@ -23,13 +23,10 @@ public void get_series_ids()
{
var ids = Subject.GetXemSeriesIds();
ids.Should().NotBeEmpty();
ids.Should().Contain(i => i == 73141);
}
[Test]
[Ignore("XEM's data is not clean")]
public void get_mapping_for_all_series()
@ -45,7 +42,7 @@ public void get_mapping_for_all_series()
}
[TestCase(12345, Description = "invalid id")]
[TestCase(267440, Description = "no single connection")]
[TestCase(279042, Description = "no single connection")]
public void should_return_empty_when_known_error(int id)
{
Subject.GetSceneTvdbMappings(id).Should().BeEmpty();
@ -62,7 +59,6 @@ public void should_get_mapping(int seriesId)
result.Should().OnlyContain(c => c.Tvdb != null);
}
[TestCase(78916)]
public void should_filter_out_episodes_without_scene_mapping(int seriesId)
{