mirror of
https://github.com/meshtastic/python.git
synced 2025-12-27 18:07:55 -05:00
13 lines
284 B
Python
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()
|