9 lines
190 B
Python
9 lines
190 B
Python
from __future__ import annotations
|
|
|
|
from discord_embed.webhook import send_webhook
|
|
|
|
|
|
def test_send_webhook() -> None:
|
|
"""Test send_webhook() works."""
|
|
send_webhook("Running Pytest")
|