Ejemplo n.º 1
0
 def test_five(self):
     self.assertEqual(8, count_vowels("A nice day to code!"))
Ejemplo n.º 2
0
 def test_four(self):
     self.assertEqual(22, count_vowels("Github is the second best thing that happend to programmers, after the keyboard!"))
Ejemplo n.º 3
0
 def test_two(self):
     self.assertEqual(8, count_vowels("Theistareykjarbunga"))
Ejemplo n.º 4
0
 def test_three(self):
     self.assertEqual(0, count_vowels("grrrrgh!"))
Ejemplo n.º 5
0
 def test_one(self):
     self.assertEqual(2, count_vowels("Python"))