diff --git a/tests/test_compute_dist_general.py b/tests/test_compute_dist_general.py index acbcff5..75f9892 100644 --- a/tests/test_compute_dist_general.py +++ b/tests/test_compute_dist_general.py @@ -2,6 +2,10 @@ import pandas as pd def test_hello(): + """ + Test to determine if hello_there returns the appropriate message for the provided argument. + Raises AssertionError if computed result does not match expectation. + """ expected_result = "Hello, there, BIOINF 576!" computed_result = m.hello_there("BIOINF 576") print(computed_result)