Handle tenants config on Azure

--HG--
branch : dev
This commit is contained in:
Sebastien Ros
2010-05-11 09:53:30 -07:00
parent 688fb2bdbb
commit 13657ebb1a
5 changed files with 26 additions and 30 deletions

View File

@@ -4,6 +4,7 @@ using NUnit.Framework;
using Orchard.Azure.Storage;
using Microsoft.WindowsAzure;
using System.Linq;
using Orchard.Environment.Configuration;
namespace Orchard.Azure.Tests.Storage {
[TestFixture]
@@ -15,7 +16,7 @@ namespace Orchard.Azure.Tests.Storage {
CloudStorageAccount devAccount;
CloudStorageAccount.TryParse("UseDevelopmentStorage=true", out devAccount);
_azureBlobStorageProvider = new AzureBlobStorageProvider("default", devAccount);
_azureBlobStorageProvider = new AzureBlobStorageProvider(new ShellSettings { Name = "default" }, devAccount);
}
[SetUp]