vban-cmd-python/tests/__init__.py

23 lines
353 B
Python
Raw Normal View History

import vbancmd
from vbancmd import kinds
2022-02-25 15:17:05 +00:00
_kind = "potato"
opts = {
"ip": "ws.local",
"streamname": "testing",
"port": 6990,
"bps": 0,
"sync": True,
}
2022-02-25 15:17:05 +00:00
vbanrs = {kind.id: vbancmd.connect(_kind, **opts) for kind in kinds.all}
2022-02-25 15:17:05 +00:00
tests = vbanrs[_kind]
2022-02-25 15:17:05 +00:00
def setup_package():
tests.login()
2022-02-25 15:17:05 +00:00
def teardown_package():
tests.logout()