Refs #30908 -- Added test for nonexistent path in forms.FilePathField.

This commit is contained in:
Hasan Ramezani 2019-10-28 23:11:04 +01:00 committed by Mariusz Felisiak
parent ab0fd3f58f
commit 6c6d24a4fe
1 changed files with 4 additions and 0 deletions

View File

@ -41,6 +41,10 @@ class FilePathFieldTest(SimpleTestCase):
def test_fix_os_paths(self):
self.assertEqual(fix_os_paths(self.path), ('/filepathfield_test_dir/'))
def test_nonexistent_path(self):
with self.assertRaisesMessage(FileNotFoundError, 'nonexistent'):
FilePathField(path='nonexistent')
def test_no_options(self):
f = FilePathField(path=self.path)
expected = [