(cls)
| 10 | class SHA1Tests(TestCase): |
| 11 | @classmethod |
| 12 | def setUpTestData(cls): |
| 13 | Author.objects.bulk_create( |
| 14 | [ |
| 15 | Author(alias="John Smith"), |
| 16 | Author(alias="Jordan Élena"), |
| 17 | Author(alias="皇帝"), |
| 18 | Author(alias=""), |
| 19 | Author(alias=None), |
| 20 | ] |
| 21 | ) |
| 22 | |
| 23 | def test_basic(self): |
| 24 | authors = ( |
nothing calls this directly
no test coverage detected