Files
py-libp2p/tests/examples/test_quic_echo_example.py
2025-09-05 05:41:06 +00:00

7 lines
232 B
Python

def test_echo_quic_example():
"""Test that the QUIC echo example can be imported and has required functions."""
from examples.echo import echo_quic
assert hasattr(echo_quic, "main")
assert hasattr(echo_quic, "run")