mirror of
https://github.com/budtmo/docker-android.git
synced 2026-07-27 22:16:08 +00:00
9 lines
200 B
Python
9 lines
200 B
Python
from device import Device
|
|
from tests.device import BaseDeviceTest
|
|
|
|
|
|
class TestDevice(BaseDeviceTest):
|
|
def test_create_device(self):
|
|
with self.assertRaises(TypeError):
|
|
Device()
|