ignore known xem errors.

This commit is contained in:
kayone
2013-11-30 16:03:15 -08:00
parent a7d5b3761b
commit 0503d7eea6
2 changed files with 10 additions and 5 deletions
@@ -39,13 +39,13 @@ namespace NzbDrone.Core.Test.Providers
}
}
[Test]
public void should_return_empty_when_series_is_not_found()
[TestCase(12345, Description = "invalid id")]
[TestCase(267440, Description = "no single connection")]
public void should_return_empty_when_known_error(int id)
{
Subject.GetSceneTvdbMappings(12345).Should().BeEmpty();
Subject.GetSceneTvdbMappings(id).Should().BeEmpty();
}
[TestCase(82807)]
public void should_get_mapping(int seriesId)
{