Module meshtastic.tests.test_ble_interface
Meshtastic unit tests for ble_interface.py
Expand source code
"""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()
Functions
def test_BLEInterface()-
Test that we can instantiate a BLEInterface
Expand source code
@pytest.mark.unit def test_BLEInterface(): """Test that we can instantiate a BLEInterface""" iface = BLEInterface('foo', debugOut=True, noProto=True) iface.close()