This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
devicehub-teal/tests/test_basic.py

18 lines
405 B
Python

import pytest
from ereuse_devicehub.devicehub import Devicehub
def test_dependencies():
with pytest.raises(ImportError):
# Simplejson has a different signature than stdlib json
# should be fixed though
# noinspection PyUnresolvedReferences
import simplejson
# noinspection PyArgumentList
def test_init(app: Devicehub):
"""Tests app initialization."""
pass