summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2023-06-11 05:03:43 +0300
committerEvgeny Zinoviev <me@ch1p.io>2023-06-11 05:03:43 +0300
commit62ee71fdb0eb07adbf0071103617aa96c993fe22 (patch)
tree07a5d7ec63c66efcf3162a388f22f371367000f7 /test
parentba321657e0e724082df206857f80ca08c4d999dc (diff)
ipcam: start porting to new config and multiserver scheme
Diffstat (limited to 'test')
-rwxr-xr-xtest/test.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/test.py b/test/test.py
index 267a19f..0c4a347 100755
--- a/test/test.py
+++ b/test/test.py
@@ -1,8 +1,10 @@
#!/usr/bin/env python
import __py_include
-from homekit.relay import RelayClient
+
+from pprint import pprint
+from homekit.camera.config import IpcamConfig
if __name__ == '__main__':
- c = RelayClient()
- print(c, c._host) \ No newline at end of file
+ c = IpcamConfig()
+ pprint(c.get()) \ No newline at end of file