diff options
| author | Alex Schofield <git@ajschof.me> | 2025-02-18 17:02:38 +0000 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2025-02-18 17:02:38 +0000 |
| commit | a104e4a04c914eed6b2a9c52107cdbf7f164d106 (patch) | |
| tree | 251e02fde4f17a47d1522bbcb3e176ecfc5d36f4 /test/test_csv_reader.py | |
| parent | 096c732d4524a230da1c8f93f3538922577e94ea (diff) | |
| download | gdpr-obfuscator-a104e4a04c914eed6b2a9c52107cdbf7f164d106.tar.gz gdpr-obfuscator-a104e4a04c914eed6b2a9c52107cdbf7f164d106.zip | |
add subheading comments for test sections in test_csv_reader.py
Diffstat (limited to 'test/test_csv_reader.py')
| -rw-r--r-- | test/test_csv_reader.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_csv_reader.py b/test/test_csv_reader.py index af13cff..271adae 100644 --- a/test/test_csv_reader.py +++ b/test/test_csv_reader.py @@ -5,6 +5,8 @@ from obfuscator.csv_reader import CSVReader reader = CSVReader() +# CSVREADER: READ_STRING TESTS + # Check if the function can read a CSV string with no content and return # an empty list @@ -61,3 +63,5 @@ def test_csv_with_quoted_fields_should_run_as_expected(): {"student_id": "5678", "name": "Student 2", "course": "Course 2"}, ] assert result == expected + +# CSVREADER: READ_S3 TESTS
\ No newline at end of file |
