Ejemplo n.º 1
0
 def test_lt(self):
     genre1 = Genre("Horror")
     genre2 = Genre("Romantic")
     assert genre1.__lt__(genre2) == True
Ejemplo n.º 2
0
 def test___lt__(self):
     genre1 = Genre("Horror")
     genre2 = Genre("Comedy")
     assert genre1.__lt__(genre2) == False