mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
12 lines
188 B
Python
12 lines
188 B
Python
import pytest
|
|
from royalnet_console.pda import ConsolePDA
|
|
|
|
|
|
def test_construction():
|
|
pda = ConsolePDA()
|
|
assert pda is not None
|
|
|
|
|
|
@pytest.fixture
|
|
def pda():
|
|
return ConsolePDA()
|