コード例 #1
0
ファイル: hw1pr3tests.py プロジェクト: raxod502/HMC-Grader
 def testYoohoo(self):
     self.assertEqual(hw.pigLatin('yoohoo'), 'oohooyay')
コード例 #2
0
ファイル: hw1pr3tests.py プロジェクト: raxod502/HMC-Grader
 def testYttrium(self):
     self.assertEqual(
         hw.pigLatin('yttrium'), 'yttriumway',
         "Make sure that you deal with words starting with y correctly.")
コード例 #3
0
ファイル: hw1pr3tests.py プロジェクト: raxod502/HMC-Grader
 def testString(self):
     self.assertEqual(hw.pigLatin('string'), 'ingstray')
コード例 #4
0
 def testYoohoo(self):
     self.assertEqual(hw.pigLatin('yoohoo'), 'oohooyay')
コード例 #5
0
 def testYttrium(self):
     self.assertEqual(hw.pigLatin('yttrium'), 'yttriumway', "Make sure that you deal with words starting with y correctly.")
コード例 #6
0
 def testString(self):
     self.assertEqual(hw.pigLatin('string'), 'ingstray')