mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
Integrated scene name helper into episode search, series lookup
This commit is contained in:
parent
f97209d476
commit
d09a82a20f
7 changed files with 228 additions and 307 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue