React to resource changes
This commit is contained in:
parent
0d7f38e10e
commit
e6ec6e0aba
|
|
@ -40,7 +40,7 @@ namespace Microsoft.AspNet.Mvc.FunctionalTests
|
||||||
|
|
||||||
// The K runtime compiles every file under compiler/resources as a resource at runtime with the same name
|
// The K runtime compiles every file under compiler/resources as a resource at runtime with the same name
|
||||||
// as the file name, in order to update a baseline you just need to change the file in that folder.
|
// as the file name, in order to update a baseline you just need to change the file in that folder.
|
||||||
var expectedContent = await _resourcesAssembly.ReadResourceAsStringAsync("BasicWebSite.Home.Index.html");
|
var expectedContent = await _resourcesAssembly.ReadResourceAsStringAsync("compiler/resources/BasicWebSite.Home.Index.html");
|
||||||
|
|
||||||
// Act
|
// Act
|
||||||
|
|
||||||
|
|
@ -60,7 +60,7 @@ namespace Microsoft.AspNet.Mvc.FunctionalTests
|
||||||
// Arrange
|
// Arrange
|
||||||
var server = TestServer.Create(_provider, _app);
|
var server = TestServer.Create(_provider, _app);
|
||||||
var client = server.Handler;
|
var client = server.Handler;
|
||||||
var expectedContent = await _resourcesAssembly.ReadResourceAsStringAsync("BasicWebSite.Home.PlainView.html");
|
var expectedContent = await _resourcesAssembly.ReadResourceAsStringAsync("compiler/resources/BasicWebSite.Home.PlainView.html");
|
||||||
|
|
||||||
// Act
|
// Act
|
||||||
var result = await client.GetAsync("http://localhost/Home/PlainView");
|
var result = await client.GetAsync("http://localhost/Home/PlainView");
|
||||||
|
|
|
||||||
|
|
@ -116,8 +116,8 @@ MyType2 @MyPropertyName2
|
||||||
};
|
};
|
||||||
host.NamespaceImports.Clear();
|
host.NamespaceImports.Clear();
|
||||||
var engine = new RazorTemplateEngine(host);
|
var engine = new RazorTemplateEngine(host);
|
||||||
var source = ReadResource("Inject.cshtml");
|
var source = ReadResource("TestFiles/Input/Inject.cshtml");
|
||||||
var expectedCode = ReadResource("Inject.cs");
|
var expectedCode = ReadResource("TestFiles/Output/Inject.cs");
|
||||||
var expectedLineMappings = new List<LineMapping>
|
var expectedLineMappings = new List<LineMapping>
|
||||||
{
|
{
|
||||||
BuildLineMapping(1, 0, 1, 32, 3, 0, 17),
|
BuildLineMapping(1, 0, 1, 32, 3, 0, 17),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue