random template is create only in ncrunch.

This commit is contained in:
kay.one 2013-01-19 17:41:12 -08:00
parent 32e402b5a0
commit 460b90bc95
1 changed files with 8 additions and 1 deletions

View File

@ -16,7 +16,14 @@ namespace NzbDrone.Core.Test.Framework
[SetUp]
public void CoreTestSetup()
{
_dbTemplateName = Path.Combine(Path.GetTempPath(), Path.GetTempFileName()) + ".sdf";
if(NCrunch.Framework.NCrunchEnvironment.NCrunchIsResident())
{
_dbTemplateName = Path.Combine(Path.GetTempPath(), Path.GetTempFileName()) + ".sdf";
}
else
{
_dbTemplateName = "db_template.sdf";
}
CreateDataBaseTemplate();
}