Don't explode on invalid dates

This commit is contained in:
Daniel Quinn
2018-04-22 16:27:43 +01:00
parent f0b8463ead
commit fe5d55d2d1
2 changed files with 9 additions and 1 deletions

View File

@@ -359,3 +359,8 @@ class TestFieldPermutations(TestCase):
}
self._test_guessed_attributes(
template.format(**spec), **spec)
def test_invalid_date_format(self):
info = FileInfo.from_path("/path/to/06112017Z - title.pdf")
self.assertEqual(info.title, "title")
self.assertIsNone(info.created)