Integrated scene name helper into episode search, series lookup

This commit is contained in:
kay.one 2011-06-02 18:15:02 -07:00
commit d09a82a20f
7 changed files with 228 additions and 307 deletions

View file

@ -16,12 +16,9 @@ namespace NzbDrone.Core.Test
[TestCase("The Simpsons")]
[TestCase("Family Guy")]
[TestCase("South Park")]
[TestCase("clone high, usa")]
public void successful_search(string title)
{
var tvCont = new TvDbProvider();
var result = tvCont.SearchSeries(title);
var result = new TvDbProvider().SearchSeries(title);
result.Should().NotBeEmpty();
result[0].SeriesName.Should().Be(title);