diff options
| author | Alex Schofield <git@ajschof.me> | 2025-02-17 16:04:09 +0000 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2025-02-17 16:04:09 +0000 |
| commit | 7d9725dcc3270c13fccdb35cbe499ac7a99b87ec (patch) | |
| tree | 3a04c215b0044a27af45d1614d6242bc81e1bc06 /test/test_csv_reader.py | |
| parent | 227b6a86d3658845441d13779d147d8892216618 (diff) | |
| download | gdpr-obfuscator-7d9725dcc3270c13fccdb35cbe499ac7a99b87ec.tar.gz gdpr-obfuscator-7d9725dcc3270c13fccdb35cbe499ac7a99b87ec.zip | |
add comments for description of csv_reader.py tests
Diffstat (limited to 'test/test_csv_reader.py')
| -rw-r--r-- | test/test_csv_reader.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/test/test_csv_reader.py b/test/test_csv_reader.py index 7f54c25..0ce3401 100644 --- a/test/test_csv_reader.py +++ b/test/test_csv_reader.py @@ -5,21 +5,24 @@ from obfuscator.csv_reader import CSVReader reader = CSVReader() - +# Check if the function can read a CSV string with no content and return +# an empty list def test_empty_csv_should_return_no_content(): content = "" result = reader.read_string(content) expected = [] assert result == expected - +# Check if the function can read a CSV string with only a header and return +# an empty list def test_csv_with_header_only_should_return_no_content(): content = "student_id,name,course\n" result = reader.read_string(content) expected = [] assert result == expected - +# Check if the function can read a CSV string with valid data and return +# a list of dictionaries def test_csv_with_valid_data(): content = ( "student_id,name,course\n" @@ -33,7 +36,8 @@ def test_csv_with_valid_data(): ] assert result == expected - +# Check if the function can read a CSV string with quoted fields and return +# a list of dictionaries with the quoted fields intact def test_csv_with_quoted_fields_should_run_as_expected(): content = ( "student_id,name,course\n" |
