Describe the bug
In a special case of a rooted, but not absolute path, MockPath.GetFullPath produces results which differ from what i get using System.IO.Path.GetFullPath
To Reproduce
varfs=newMockFileSystem();Console.WriteLine("Mocking: "+fs.Path.GetFullPath("d:test.txt"));Console.WriteLine("OS: "+Path.GetFullPath("d:test.txt"));Output (Linux):
Mocking: /d:test.txt
OS: /home/USER/d:test.txt
Output (Windows):
Mocking: d:test.txt
OS: D:\test.txt
Expected behavior
I expect the values to be equal.
Describe the bug
In a special case of a rooted, but not absolute path,
MockPath.GetFullPathproduces results which differ from what i get usingSystem.IO.Path.GetFullPathTo Reproduce
Expected behavior
I expect the values to be equal.