Fixes failing unit tests due to adding check for if the application is configured and un-ignores a couple.

This commit is contained in:
Shannon Deminick
2013-02-12 18:59:07 +06:00
parent 7f51e01be7
commit 102bf058bc
2 changed files with 1 additions and 3 deletions

View File

@@ -34,7 +34,6 @@ namespace Umbraco.Tests.ContentStores
PublishedMediaTests.DoTearDown();
}
[Ignore]
[Test]
public void Get_Root_Docs()
{
@@ -53,7 +52,6 @@ namespace Umbraco.Tests.ContentStores
}
[Ignore]
[Test]
public void Get_Item_Without_Examine()
{

View File

@@ -78,7 +78,7 @@ namespace Umbraco.Tests.TestHelpers
if (RequiresDbSetup)
{
//Create the umbraco database and its base data
DatabaseContext.Database.CreateDatabaseSchema();
DatabaseContext.Database.CreateDatabaseSchema(false);
}
//called so that inheritors can do stuff before freezing.