Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tests/test_compute_dist_general.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down