diff options
author | BonfaceKilz | 2022-03-18 15:39:19 +0300 |
---|---|---|
committer | BonfaceKilz | 2022-03-18 15:50:00 +0300 |
commit | 490a9c2306d9b05e132b1fcef6cd65a985a14b71 (patch) | |
tree | d39a582509e4e26c8481324f75d79a793b3620cd /tests/unit/test_csvcmp.py | |
parent | 16367dab9248d3aa2660e0b5cafdce25e8f7067c (diff) | |
download | genenetwork3-490a9c2306d9b05e132b1fcef6cd65a985a14b71.tar.gz |
Create new function for cleaning individual fields in csv text
* gn3/csvcmp.py (clean_csv_text): New function.
* tests/unit/test_csvcmp.py: Import "csv_text".
(test_clean_csv_text): Test case for the above.
Diffstat (limited to 'tests/unit/test_csvcmp.py')
-rw-r--r-- | tests/unit/test_csvcmp.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/unit/test_csvcmp.py b/tests/unit/test_csvcmp.py index b64fe83..ec4ca71 100644 --- a/tests/unit/test_csvcmp.py +++ b/tests/unit/test_csvcmp.py @@ -1,6 +1,7 @@ """Tests for gn3.csvcmp""" import pytest +from gn3.csvcmp import clean_csv_text from gn3.csvcmp import csv_diff from gn3.csvcmp import extract_invalid_csv_headers from gn3.csvcmp import extract_strain_name @@ -147,3 +148,23 @@ string""" csv_text = "Strain Name, Value, SE, Colour" assert extract_invalid_csv_headers(allowed_headers, csv_text) == ["Colour"] + + +@pytest.mark.unit_test +def test_clean_csv(): + """Test that csv text input is cleaned properly""" + csv_text = """ +Strain Name,Value,SE,Count +BXD1,18,x ,0 +BXD12, 16,x,x +BXD14,15 ,x,x +BXD15,14,x, +""" + expected_csv = """Strain Name,Value,SE,Count +BXD1,18,x,0 +BXD12,16,x,x +BXD14,15,x,x +BXD15,14,x,""" + + assert clean_csv_text(csv_text) == expected_csv + assert clean_csv_text("a,b \n1,2\n") == "a,b\n1,2" |