|
@@ -17,6 +17,8 @@
|
|
|
# MA 02110-1301, USA.
|
|
|
|
|
|
from io import BytesIO
|
|
|
+import sys
|
|
|
+from unittest import skipIf
|
|
|
|
|
|
from dulwich import (
|
|
|
client,
|
|
@@ -384,6 +386,12 @@ class TestGetTransportAndPath(TestCase):
|
|
|
self.assertTrue(isinstance(c, SubprocessGitClient))
|
|
|
self.assertEqual('foo.bar/baz', path)
|
|
|
|
|
|
+ @skipIf(sys.platform != 'win32', 'Behaviour only happens on windows.')
|
|
|
+ def test_local_abs_windows_path(self):
|
|
|
+ c, path = get_transport_and_path('C:\\foo.bar\\baz')
|
|
|
+ self.assertTrue(isinstance(c, SubprocessGitClient))
|
|
|
+ self.assertEqual('C:\\foo.bar\\baz', path)
|
|
|
+
|
|
|
def test_error(self):
|
|
|
# Need to use a known urlparse.uses_netloc URL scheme to get the
|
|
|
# expected parsing of the URL on Python versions less than 2.6.5
|