Started to add support for deskmetrics

This commit is contained in:
kay.one 2012-01-24 19:09:49 -08:00
commit b225db9aaf
93 changed files with 50336 additions and 5459 deletions

View file

@ -4,6 +4,7 @@ using System.Collections.Generic;
using System.Linq;
using FluentAssertions;
using NUnit.Framework;
using NzbDrone.Common;
using NzbDrone.Core.Jobs;
using NzbDrone.Core.Providers;
using NzbDrone.Core.Providers.Indexer;
@ -101,5 +102,12 @@ namespace NzbDrone.Core.Test
first.Should().BeSameAs(second);
}
[Test]
public void app_should_be_marked_as_new_install_if_db_is_initilized_for_the_first_time()
{
WithRealDb();
EnviromentProvider.IsNewInstall.Should().Be(true);
}
}
}