Removed ParseSeasonInfo.

ParseEpisodeInfo will mark a report as a full season if no episodes are found, but was matched.
Fixed tests that were affected by REGEX changes.
This commit is contained in:
Mark McDowall 2011-08-26 22:37:20 -07:00
commit 07a4c94032
4 changed files with 14 additions and 60 deletions

View file

@ -23,10 +23,10 @@ namespace NzbDrone.Core.Test
public class IndexerTests : TestBase
{
[TestCase("nzbsorg.xml", 0)]
[TestCase("nzbsrus.xml", 6)]
[TestCase("nzbsorg.xml", 2)]
[TestCase("nzbsrus.xml", 9)]
[TestCase("newzbin.xml", 1)]
[TestCase("nzbmatrix.xml", 1)]
[TestCase("nzbmatrix.xml", 2)]
public void parse_feed_xml(string fileName, int warns)
{
var mocker = new AutoMoqer();