Renamed all Core.Controllers to Core.Providers to avoid confusion between Core Controllers and MVC controllers

This commit is contained in:
Keivan
2010-09-27 21:25:41 -07:00
parent 9515c8788a
commit 01c1943d0e
24 changed files with 125 additions and 152 deletions

View File

@@ -4,7 +4,7 @@ using System.Text;
using Gallio.Framework;
using MbUnit.Framework;
using MbUnit.Framework.ContractVerifiers;
using NzbDrone.Core.Controllers;
using NzbDrone.Core.Providers;
namespace NzbDrone.Core.Test
{
@@ -18,7 +18,7 @@ namespace NzbDrone.Core.Test
[Ignore("Have to find a way to mock app path for tests.")]
public void TestSearch(string title)
{
var tvCont =new TvDbController();
var tvCont =new TvDbProvider();
var result = tvCont.SearchSeries(title);
Assert.AreNotEqual(0, result.Count);