diff options
| author | Alex Schofield <git@ajschof.me> | 2025-02-11 13:48:39 +0000 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2025-02-11 13:48:39 +0000 |
| commit | 3ec4c97f2f2fa07e63cc5781807f62883043490b (patch) | |
| tree | 43b8d308e597e1586935b1fbdd77d831b3da3461 /test/test_csv_reader.py | |
| parent | 904d1951567fc496ff13f6fbaaac4aadedd391f8 (diff) | |
| download | gdpr-obfuscator-3ec4c97f2f2fa07e63cc5781807f62883043490b.tar.gz gdpr-obfuscator-3ec4c97f2f2fa07e63cc5781807f62883043490b.zip | |
skip tests that aren't functional yet
Diffstat (limited to 'test/test_csv_reader.py')
| -rw-r--r-- | test/test_csv_reader.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test_csv_reader.py b/test/test_csv_reader.py index 8189842..38c3957 100644 --- a/test/test_csv_reader.py +++ b/test/test_csv_reader.py @@ -2,6 +2,7 @@ # Author: Alex Schofield from csv_reader import csv_reader +import pytest def test_empty_csv_should_return_no_content(): content = "" @@ -28,24 +29,31 @@ def test_csv_with_valid_data(): ] assert result == expected +@pytest.mark.skip(reason="Not implemented yet") def test_csv_with_quoted_fields_should_be_sanitised(): pass +@pytest.mark.skip(reason="Not implemented yet") def test_non_csv_file_should_return_no_content(): pass +@pytest.mark.skip(reason="Not implemented yet") def test_csv_file_with_embedded_newline_should_be_sanitised(): pass +@pytest.mark.skip(reason="Not implemented yet") def test_csv_file_with_embedded_comma_should_be_sanitised(): pass +@pytest.mark.skip(reason="Not implemented yet") def test_csv_file_with_embedded_quote_should_be_sanitised(): pass +@pytest.mark.skip(reason="Not implemented yet") def test_csv_file_with_null_values_should_be_transformed_to_empty_string(): pass +@pytest.mark.skip(reason="Not implemented yet") def test_csv_file_with_non_string_data_should_be_transformed_to_empty_string(): pass |
