Ejemplo n.º 1
0
 def test_chars(self):
     assert char_count("hello") == 5
     assert char_count("hello   world") == 10
Ejemplo n.º 2
0
 def test_chars(self):
     assert char_count("hello") == 5
     assert char_count("hello   world") == 10
Ejemplo n.º 3
0
 def test_empty_imput(self):
     assert char_count("") == 0
Ejemplo n.º 4
0
 def test_empty_imput(self):
     assert char_count("") == 0