BloomTests.web.BloomServerTests.GetLocalPathWithoutQuery_HandlesNetworkDriveCorrectly C# (CSharp) Method

GetLocalPathWithoutQuery_HandlesNetworkDriveCorrectly() private method

        public void GetLocalPathWithoutQuery_HandlesNetworkDriveCorrectly()
        {
            var path = @"//someserver/somefolder/somebook.htm";
            var url = path.ToLocalhost() + "?thumbnail=1";
            var request = new PretendRequestInfo(url);
            var result = ServerBase.GetLocalPathWithoutQuery(request);
            Assert.That(result, Is.EqualTo(path));
        }