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