コード例 #1
0
ファイル: test12.py プロジェクト: kristinash/week0problems
 def test_five(self):
     self.assertEqual(8, count_vowels("A nice day to code!"))
コード例 #2
0
ファイル: test12.py プロジェクト: kristinash/week0problems
 def test_four(self):
     self.assertEqual(22, count_vowels("Github is the second best thing that happend to programmers, after the keyboard!"))
コード例 #3
0
ファイル: test12.py プロジェクト: kristinash/week0problems
 def test_two(self):
     self.assertEqual(8, count_vowels("Theistareykjarbunga"))
コード例 #4
0
ファイル: test12.py プロジェクト: kristinash/week0problems
 def test_three(self):
     self.assertEqual(0, count_vowels("grrrrgh!"))
コード例 #5
0
ファイル: test12.py プロジェクト: kristinash/week0problems
 def test_one(self):
     self.assertEqual(2, count_vowels("Python"))