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
Xavier Bustamante Talavera 8723b379b0 Update to functional endpoint
2018-04-27 19:16:43 +02:00

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