(self)
| 239 | |
| 240 | class ContentFileTestCase(unittest.TestCase): |
| 241 | def test_content_file_default_name(self): |
| 242 | self.assertIsNone(ContentFile(b"content").name) |
| 243 | |
| 244 | def test_content_file_custom_name(self): |
| 245 | """ |
nothing calls this directly
no test coverage detected