Example #1
0
 def test_numero_2_eh_triste(self):
     self.assertEqual(happy(2), "triste")
Example #2
0
 def test_numero_1024_eh_triste(self):
     self.assertEqual(happy(1024), "triste")
Example #3
0
 def test_numero_1_eh_feliz(self):
     self.assertEqual(happy(1), "feliz")
Example #4
0
 def test_numero_293_eh_feliz(self):
     self.assertEqual(happy(293), "feliz")
 def test_numero_2_eh_triste(self):
     self.assertEqual(happy(2), "triste")
 def test_numero_1_eh_feliz(self):
     self.assertEqual(happy(1), "feliz")
 def test_numero_1024_eh_triste(self):
     self.assertEqual(happy(1024), "triste")
 def test_numero_293_eh_feliz(self):
     self.assertEqual(happy(293), "feliz")