From a126edd7a9f2a72bf744a34c57aa9cb23568ba29 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Mon, 11 Apr 2022 12:38:52 +0300 Subject: Set up initial, failing tests for cell values --- tests/qc/qc/test_cells.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 tests/qc/qc/test_cells.py (limited to 'tests/qc') diff --git a/tests/qc/qc/test_cells.py b/tests/qc/qc/test_cells.py new file mode 100644 index 0000000..8f1e9ea --- /dev/null +++ b/tests/qc/qc/test_cells.py @@ -0,0 +1,25 @@ +"""Test that values in cells within a line fulfill the required criteria""" + +from hypothesis import given +from hypothesis import strategies as st + +@given(num_str=st.from_regex("^(?!([0-9]+\.([0-9]{3}|[0-9]{6,}))).*", fullmatch=True)) +def test_cell_value_errors_with_invalid_inputs(num_str): + print(f"NUMBER STRING: {num_str}") + assert False, "Not implemented" + +@given(num_str=st.from_regex("[0-9]+\.([0-9]{1,2}|[0-9]{4,})", fullmatch=True)) +def test_cell_average_value_errors_if_not_three_decimal_places(num_str): + assert False, "Not implemented" + +@given(num_str=st.from_regex("[0-9]+\.[0-9]{3}", fullmatch=True)) +def test_cell_average_value_pass_if_three_decimal_places(num_str): + assert False, "Not implemented" + +@given(num_str=st.from_regex("[0-9]+\.([0-9]{0,5})", fullmatch=True)) +def test_cell_standard_error_value_errors_if_less_than_six_decimal_places(num_str): + assert False, "Not implemented" + +@given(num_str=st.from_regex("[0-9]+\.[0-9]{6,}", fullmatch=True)) +def test_cell_standard_error_value_pass_if_six_or_more_decimal_places(num_str): + assert False, "Not implemented" -- cgit v1.2.3