Adding unit tests for DictionaryRepository.

This commit is contained in:
Morten Christensen
2012-11-08 15:55:44 -01:00
parent 439098e3d7
commit 705fed7a5e
14 changed files with 240 additions and 42 deletions

View File

@@ -117,7 +117,8 @@ namespace Umbraco.Core.IO
public Stream OpenFile(string path)
{
return File.OpenRead(GetFullPath(path));
var fullPath = GetFullPath(path);
return File.OpenRead(fullPath);
}
public void DeleteFile(string path)