Files
python/meshtastic/test/test_mesh_interface.py
2021-12-06 22:19:26 -08:00

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()