Files
python/meshtastic/tests/test_ble_interface.py
2021-12-15 16:15:46 -08:00

13 lines
284 B
Python

"""Meshtastic unit tests for ble_interface.py"""
import pytest
from ..ble_interface import BLEInterface
@pytest.mark.unit
def test_BLEInterface():
"""Test that we can instantiate a BLEInterface"""
iface = BLEInterface('foo', debugOut=True, noProto=True)
iface.close()