mirror of
https://github.com/meshtastic/python.git
synced 2025-12-30 19:37:52 -05:00
15 lines
315 B
Python
15 lines
315 B
Python
"""Meshtastic unit tests for node.py"""
|
|
|
|
import pytest
|
|
|
|
from meshtastic.mesh_interface import MeshInterface
|
|
|
|
|
|
@pytest.mark.unit
|
|
def test_MeshInterface():
|
|
"""Test that we instantiate a MeshInterface"""
|
|
iface = MeshInterface(noProto=True)
|
|
iface.showInfo()
|
|
iface.localNode.showInfo()
|
|
iface.close()
|