mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
7 lines
232 B
Python
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")
|