diff --git a/tests/test_main.py b/tests/test_main.py index b04e91c..df21a39 100644 --- a/tests/test_main.py +++ b/tests/test_main.py @@ -6,3 +6,9 @@ def test_if_send_to_discord_is_in_main(): send_to_discords needs to be in main for this program to work. """ assert hasattr(main, "send_to_discord") + +def test_if_send_to_user_is_in_main(): + """ + send_to_user needs to be in main for this program to work. + """ + assert hasattr(main, "send_to_user") \ No newline at end of file