Exemplo n.º 1
0
 def test_remove_multiple_spaces(self):
     output = table.split_cell_values("test   cell ")
     self.assertIn("test ", output)
     self.assertIn("cell", output)
Exemplo n.º 2
0
 def test_strip_value(self):
     output = table.split_cell_values("test cell ")
     self.assertIn("test ", output)
     self.assertIn("cell", output)
Exemplo n.º 3
0
 def test_remove_newlines(self):
     output = table.split_cell_values("test\ncell")
     self.assertIn("test ", output)
     self.assertIn("cell", output)
Exemplo n.º 4
0
 def test_remove_multiple_spaces(self):
     output = table.split_cell_values("test   cell ")
     self.assertIn("test ", output)
     self.assertIn("cell", output)
Exemplo n.º 5
0
 def test_strip_value(self):
     output = table.split_cell_values("test cell ")
     self.assertIn("test ", output)
     self.assertIn("cell", output)
Exemplo n.º 6
0
 def test_remove_newlines(self):
     output = table.split_cell_values("test\ncell")
     self.assertIn("test ", output)
     self.assertIn("cell", output)