mirror of
https://github.com/meshtastic/python.git
synced 2025-12-25 08:57:53 -05:00
16 lines
411 B
Python
16 lines
411 B
Python
"""Meshtastic unit tests for ble_interface.py"""
|
|
|
|
|
|
from unittest.mock import patch
|
|
import pytest
|
|
|
|
from ..ble_interface import BLEInterface
|
|
|
|
@pytest.mark.unit
|
|
@patch('platform.system', return_value='Linux')
|
|
def test_BLEInterface(mock_platform):
|
|
"""Test that we can instantiate a BLEInterface"""
|
|
iface = BLEInterface('foo', debugOut=True, noProto=True)
|
|
iface.close()
|
|
mock_platform.assert_called()
|