Example #1
0
 def test_min_length_name(self):
     song = Song(name="T",
                 url="https://www.example.com/",
                 artist=self.artist)
     with self.assertValidationErrors(['name']):
         song.full_clean()