Fixing IFileSystem in Razor test

This commit is contained in:
Pranav K 2014-08-26 10:30:08 -07:00
parent b2750752dd
commit d77b06f742
1 changed files with 5 additions and 0 deletions

View File

@ -41,5 +41,10 @@ namespace Microsoft.AspNet.Mvc.Razor
{
return _lookup.TryGetValue(subpath, out fileInfo);
}
public bool TryGetParentPath(string subpath, out string parentPath)
{
throw new NotImplementedException();
}
}
}