mirror of
https://github.com/django/django.git
synced 2025-08-04 10:59:45 +00:00
Refs #33476 -- Reformatted code with Black.
This commit is contained in:
parent
f68fa8b45d
commit
9c19aff7c7
1992 changed files with 139577 additions and 96284 deletions
|
@ -9,10 +9,7 @@ from django.utils._os import safe_join, to_path
|
|||
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)
|
||||
)
|
||||
self.assertEqual(path, "{0}abc{0}abc".format(os.path.sep))
|
||||
|
||||
def test_root_path(self):
|
||||
drive, path = os.path.splitdrive(safe_join("/", "path"))
|
||||
|
@ -34,9 +31,9 @@ class SafeJoinTests(unittest.TestCase):
|
|||
|
||||
class ToPathTests(unittest.TestCase):
|
||||
def test_to_path(self):
|
||||
for path in ('/tmp/some_file.txt', Path('/tmp/some_file.txt')):
|
||||
for path in ("/tmp/some_file.txt", Path("/tmp/some_file.txt")):
|
||||
with self.subTest(path):
|
||||
self.assertEqual(to_path(path), Path('/tmp/some_file.txt'))
|
||||
self.assertEqual(to_path(path), Path("/tmp/some_file.txt"))
|
||||
|
||||
def test_to_path_invalid_value(self):
|
||||
with self.assertRaises(TypeError):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue