mirror of
https://github.com/python-kasa/python-kasa.git
synced 2026-07-08 14:52:03 +00:00
Some checks are pending
CI / Perform Lint Checks (3.14) (push) Waiting to run
CI / Python 3.11 on macos-latest (push) Blocked by required conditions
CI / Python 3.12 on macos-latest (push) Blocked by required conditions
CI / Python 3.13 on macos-latest (push) Blocked by required conditions
CI / Python 3.14 on macos-latest (push) Blocked by required conditions
CI / Python 3.11 on ubuntu-latest (push) Blocked by required conditions
CI / Python 3.12 on ubuntu-latest (push) Blocked by required conditions
CI / Python 3.13 on ubuntu-latest (push) Blocked by required conditions
CI / Python 3.14 on ubuntu-latest (push) Blocked by required conditions
CI / Python 3.11 on windows-latest (push) Blocked by required conditions
CI / Python 3.12 on windows-latest (push) Blocked by required conditions
CI / Python 3.13 on windows-latest (push) Blocked by required conditions
CI / Python 3.14 on windows-latest (push) Blocked by required conditions
CodeQL Checks / Analyze (python) (push) Waiting to run
Add type annotations across all 'smart' tests, enabling mypy to check test function bodies, catching type errors that were previously hidden.
21 lines
544 B
Python
21 lines
544 B
Python
from kasa import Module
|
|
from kasa.smart import SmartDevice
|
|
|
|
from ...device_fixtures import parametrize
|
|
|
|
matter = parametrize(
|
|
"has matter", component_filter="matter", protocol_filter={"SMART", "SMARTCAM"}
|
|
)
|
|
|
|
|
|
@matter
|
|
async def test_info(dev: SmartDevice) -> None:
|
|
"""Test matter info."""
|
|
matter = dev.modules.get(Module.Matter)
|
|
assert matter
|
|
assert matter.info
|
|
setup_code = dev.features.get("matter_setup_code")
|
|
assert setup_code
|
|
setup_payload = dev.features.get("matter_setup_payload")
|
|
assert setup_payload
|