8 lines
221 B
Python
8 lines
221 B
Python
"""Test webhook.py, the only thing we have right now is send_webhook()."""
|
|
from discord_embed.webhook import send_webhook
|
|
|
|
|
|
def test_send_webhook():
|
|
"""Test send_webhook() works."""
|
|
send_webhook("Running Pytest")
|