summaryrefslogtreecommitdiff
path: root/tests/utils/os_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/utils/os_utils.py')
-rw-r--r--tests/utils/os_utils.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/utils/os_utils.py b/tests/utils/os_utils.py
new file mode 100644
index 0000000000..a205d67431
--- /dev/null
+++ b/tests/utils/os_utils.py
@@ -0,0 +1,26 @@
+import os
+
+from django.utils import unittest
+from django.utils._os import safe_join
+
+
+class SafeJoinTests(unittest.TestCase):
+ def test_base_path_ends_with_sep(self):
+ drive, path = os.path.splitdrive(safe_join("/abc/", "abc"))
+ self.assertEqual(
+ path,
+ "{0}abc{0}abc".format(os.path.sep)
+ )
+
+ def test_root_path(self):
+ drive, path = os.path.splitdrive(safe_join("/", "path"))
+ self.assertEqual(
+ path,
+ "{0}path".format(os.path.sep),
+ )
+
+ drive, path = os.path.splitdrive(safe_join("/", ""))
+ self.assertEqual(
+ path,
+ os.path.sep,
+ )