Updated subsonic to latest nightly build

Added foreign relations to all entities object
Removed unnecessary libraries
This commit is contained in:
Keivan 2010-09-30 17:09:22 -07:00
commit beaf0cf939
19 changed files with 3503 additions and 4821 deletions

View file

@ -2,6 +2,7 @@ using System.Collections.Generic;
using System.IO;
using MbUnit.Framework;
using NzbDrone.Core.Repository;
using NzbDrone.Core.Repository.Quality;
namespace NzbDrone.Core.Test
{
@ -18,11 +19,11 @@ namespace NzbDrone.Core.Test
{
//Arrange
var repo = MockLib.EmptyRepository;
var repo = MockLib.GetEmptyRepository();
var testProfile = new QualityProfile
{
Cutoff = Quality.SDTV,
Allowed = new List<Quality>() { Quality.HDTV, Quality.DVD },
Cutoff = QualityTypes.SDTV,
Allowed = new List<QualityTypes>() { QualityTypes.HDTV, QualityTypes.DVD },
};
//Act