| 6 | |
| 7 | |
| 8 | class Genre(models.Model): |
| 9 | name = models.CharField( max_length=200, help_text='Enter a book genre (e.g. Science Fiction)') |
| 10 | |
| 11 | def __str__(self): |
| 12 | return self.name |
| 13 | |
| 14 | |
| 15 | class Book(models.Model): |
nothing calls this directly
no outgoing calls
no test coverage detected