Files
docker-android/cli/src/tests/device/test_device.py
T

9 lines
208 B
Python

from src.device import Device
from src.tests.device import BaseDeviceTest
class TestDevice(BaseDeviceTest):
def test_create_device(self):
with self.assertRaises(TypeError):
Device()