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
Raw Normal View History

2018-04-27 17:16:43 +00:00
import pytest
2018-04-10 15:06:39 +00:00
from ereuse_devicehub.devicehub import Devicehub
2018-04-27 17:16:43 +00:00
def test_dependencies():
with pytest.raises(ImportError):
# Simplejson has a different signature than stdlib json
# should be fixed though
# noinspection PyUnresolvedReferences
import simplejson
2018-04-10 15:06:39 +00:00
# noinspection PyArgumentList
def test_init(app: Devicehub):
"""Tests app initialization."""
pass