moved all of the tests that didn't need to be SQL test to basic core test.

This commit is contained in:
kay.one
2013-02-16 21:44:06 -08:00
parent efa44219cf
commit cb0c3b85de
77 changed files with 306 additions and 76 deletions

View File

@@ -18,7 +18,7 @@ namespace NzbDrone.Core.Test
[TestFixture]
[ExclusivelyUses("REAL_LOG_FILE")]
[Serial]
class CentralDispatchFixture : SqlCeTest
class CentralDispatchFixture : CoreTest
{
readonly IList<string> indexers = typeof(CentralDispatch).Assembly.GetTypes().Where(t => t.IsSubclassOf(typeof(IndexerBase))).Select(c => c.ToString()).ToList();
readonly IList<string> jobs = typeof(CentralDispatch).Assembly.GetTypes().Where(t => t.GetInterfaces().Contains(typeof(IJob))).Select(c => c.ToString()).ToList();