aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_csv_reader.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_csv_reader.py')
-rw-r--r--test/test_csv_reader.py8
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
git.ajschof.me — hosted by ajschofield — powered by cgit