()
| 150 | |
| 151 | |
| 152 | def test_library_properties(): |
| 153 | assert len(sz.__version__.split(".")) == 3, "Semantic versioning must be preserved" |
| 154 | assert "serial" in sz.__capabilities__, "Serial backend must be present" |
| 155 | assert isinstance(sz.__capabilities_str__, str) and len(sz.__capabilities_str__) > 0 |
| 156 | sz.reset_capabilities(sz.__capabilities__) # Should not raise |
| 157 | |
| 158 | |
| 159 | @pytest.mark.parametrize("native_type", [str, bytes, bytearray]) |
nothing calls this directly
no test coverage detected
searching dependent graphs…