Fix unit test

Change app config to rebind mvc 1.0 to mvc 2.0 assembly,
the same way we do in web.config.

--HG--
branch : dev
This commit is contained in:
Renaud Paquay
2010-05-19 10:05:01 -07:00
parent b8aadd218e
commit d6e1440d9b
2 changed files with 9 additions and 0 deletions

View File

@@ -26,6 +26,7 @@ namespace Orchard.Tests.Environment.ShellBuilders {
var builder = new ContainerBuilder();
builder.RegisterType<ShellContainerFactory>().As<IShellContainerFactory>();
builder.RegisterType<ComponentForHostContainer>();
builder.RegisterType<ControllerActionInvoker>().As<IActionInvoker>();
_container = builder.Build();
}