Esempio n. 1
0
 def test_hiss_returns_sss_cough_cough_after_creation_with_75(self):
     old_python = OldPython(75)
     self.assertEqual('sss... *cough* *cough*', old_python.hiss())
Esempio n. 2
0
 def test_hiss_returns_sss_sss_after_creation_with_55(self):
     old_python = OldPython(55)
     self.assertEqual('sss sss', old_python.hiss())
Esempio n. 3
0
 def test_hiss_returns_SSss_SSss_after_creation_with_65(self):
     old_python = OldPython(65)
     self.assertEqual('SSss SSss', old_python.hiss())