コード例 #1
0
ファイル: test_old_python.py プロジェクト: TienHP/Splat
 def test_hiss_returns_sss_cough_cough_after_creation_with_75(self):
     old_python = OldPython(75)
     self.assertEqual('sss... *cough* *cough*', old_python.hiss())
コード例 #2
0
ファイル: test_old_python.py プロジェクト: TienHP/Splat
 def test_hiss_returns_sss_sss_after_creation_with_55(self):
     old_python = OldPython(55)
     self.assertEqual('sss sss', old_python.hiss())
コード例 #3
0
ファイル: test_old_python.py プロジェクト: TienHP/Splat
 def test_hiss_returns_SSss_SSss_after_creation_with_65(self):
     old_python = OldPython(65)
     self.assertEqual('SSss SSss', old_python.hiss())