Browse Source
by moving this function it can be easily reused in the upcoming "xml_parser" modulexmlparsing
Holger Frey
2 years ago
4 changed files with 35 additions and 33 deletions
@ -0,0 +1,15 @@
@@ -0,0 +1,15 @@
|
||||
def test_cleanup_data_columns(): |
||||
from pandas import DataFrame |
||||
|
||||
from sensospot_parser.columns import _cleanup_data_columns |
||||
|
||||
columns = ["Rect.", "Contour", " ID ", "Found", "Dia."] |
||||
data = {col: [i] for i, col in enumerate(columns)} |
||||
data_frame = DataFrame(data=data) |
||||
|
||||
result = _cleanup_data_columns(data_frame) |
||||
|
||||
assert set(result.columns) == {"Pos.Id", "Spot.Found", "Spot.Diameter"} |
||||
assert result["Pos.Id"][0] == 2 |
||||
assert result["Spot.Found"][0] == 3 |
||||
assert result["Spot.Diameter"][0] == 4 |
Loading…
Reference in new issue