bsblan-testing
Installation
SKILL.md
Testing python-bsblan
This skill guides you through testing practices for the python-bsblan library.
Test Structure
Tests are located in tests/ and use pytest with async support.
Basic Test Pattern
import pytest
from bsblan import BSBLAN
@pytest.mark.asyncio
async def test_feature_name(mock_bsblan: BSBLAN) -> None:
"""Test description."""
# Arrange
expected_value = "expected"