blob: f16a2293ec87400caa7a08f0bc6ffda80c0a7d0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# csv_reader.py - tests
# Author: Alex Schofield
from csv_reader import csv_reader
def test_empty_csv_should_return_no_content():
pass
def test_csv_with_header_only_should_return_no_content():
pass
def test_csv_with_valid_data_should_return_obfuscated_content():
pass
def test_csv_with_quoted_fields_should_be_sanitised():
pass
def test_non_csv_file_should_return_no_content():
pass
def test_csv_file_with_embedded_newline_should_be_sanitised():
pass
def test_csv_file_with_embedded_comma_should_be_sanitised():
pass
def test_csv_file_with_embedded_quote_should_be_sanitised():
pass
def test_csv_file_with_null_values_should_be_transformed_to_empty_string():
pass
def test_csv_file_with_non_string_data_should_be_transformed_to_empty_string():
pass
|