Ejemplo n.º 1
0
 def test_tabs_to_spaces(self):
     self.assertEqual('hi  dayana  ',
                      solution.tabs_to_spaces('hi\tdayana\t', 2))
Ejemplo n.º 2
0
 def test_tabs_to_spaces_goodbye_world_tab_1(self):
     self.assertEqual(
         " goodbye world ", tabs_to_spaces("        goodbye         world           ", 1))
Ejemplo n.º 3
0
 def test_tabs_to_spaces_hello_world_tab_4(self):
     self.assertEqual(
         "    hello    world    ", tabs_to_spaces("         hello         world             ", 4))
Ejemplo n.º 4
0
 def test_tabs_to_spaces(self):
     self.assertEqual('hi  dayana  ', solution.tabs_to_spaces('hi\tdayana\t', 2))