1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 03:54:20 +00:00
royalnet/royalnet_console/tests/test_pda.py

13 lines
188 B
Python
Raw Normal View History

2021-03-31 03:01:40 +00:00
import pytest
from royalnet_console.pda import ConsolePDA
def test_construction():
pda = ConsolePDA()
assert pda is not None
@pytest.fixture
def pda():
return ConsolePDA()