mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
13 lines
188 B
Python
13 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()
|